wok-6.x diff pure-ftpd/receipt @ rev 23712
updated udftools (2.1 -> 2.2)
author | Hans-G?nter Theisgen |
---|---|
date | Tue Apr 28 17:35:06 2020 +0100 (2020-04-28) |
parents | 3f1b4d69cda0 |
children | 241fb98cab1c |
line diff
1.1 --- a/pure-ftpd/receipt Mon Apr 08 19:08:56 2019 +0200 1.2 +++ b/pure-ftpd/receipt Tue Apr 28 17:35:06 2020 +0100 1.3 @@ -1,15 +1,16 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="pure-ftpd" 1.7 -VERSION="1.0.48" 1.8 +VERSION="1.0.49" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="A secure FTP daemon" 1.11 +SHORT_DESC="A secure FTP daemon." 1.12 MAINTAINER="erjo@slitaz.org" 1.13 LICENSE="BSD" 1.14 +WEB_SITE="https://www.pureftpd.org/project/pure-ftpd" 1.15 +HANDBOOK_URL="https://www.pureftpd.org/project/pure-ftpd/doc" 1.16 + 1.17 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.18 -WEB_SITE="https://www.pureftpd.org/project/pure-ftpd" 1.19 WGET_URL="http://download.pureftpd.org/pub/pure-ftpd/releases/$TARBALL" 1.20 -HANDBOOK_URL="https://www.pureftpd.org/project/pure-ftpd/doc" 1.21 1.22 DEPENDS="attr libcap libssl" 1.23 BUILD_DEPENDS="openssl-dev" 1.24 @@ -17,26 +18,32 @@ 1.25 # Rules to configure and make the package. 1.26 compile_rules() 1.27 { 1.28 - ./configure --prefix=/usr \ 1.29 - --without-pam \ 1.30 - --with-puredb \ 1.31 - --with-extauth \ 1.32 - $CONFIGURE_ARGS && make && make install 1.33 + ./configure \ 1.34 + --prefix=/usr \ 1.35 + --without-pam \ 1.36 + --with-puredb \ 1.37 + --with-extauth \ 1.38 + $CONFIGURE_ARGS && 1.39 + make && 1.40 + make install 1.41 } 1.42 1.43 # Rules to gen a SliTaz package suitable for Tazpkg. 1.44 genpkg_rules() 1.45 { 1.46 - mkdir -p $fs/usr $fs/etc/init.d 1.47 - cp -a $install/usr/bin $fs/usr 1.48 - cp -a $install/usr/sbin $fs/usr 1.49 - install -g root -o root -m 0755 $stuff/pure-ftpd $fs/etc/init.d 1.50 + mkdir -p $fs/usr 1.51 + mkdir -p $fs/etc/init.d 1.52 + 1.53 + cp -a $install/usr/bin $fs/usr 1.54 + cp -a $install/usr/sbin $fs/usr 1.55 + install -g root -o root -m 0755 $stuff/pure-ftpd \ 1.56 + $fs/etc/init.d 1.57 } 1.58 1.59 post_install() 1.60 { 1.61 echo "" 1.62 - echo -e "\nTo starts $PACKAGE server you can run :\n" 1.63 + echo -e "\nTo start $PACKAGE server you can run :\n" 1.64 echo "/etc/init.d/$PACKAGE start" 1.65 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n" 1.66 }