wok diff pure-ftpd/receipt @ rev 11625
Up: git to 1.7.9.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun Jan 29 16:31:42 2012 -0500 (2012-01-29) |
parents | 18a6a2293fee |
children | 30dce14800a5 |
line diff
1.1 --- a/pure-ftpd/receipt Wed Apr 20 02:01:02 2011 +0000 1.2 +++ b/pure-ftpd/receipt Sun Jan 29 16:31:42 2012 -0500 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="pure-ftpd" 1.7 -VERSION="1.0.31" 1.8 +VERSION="1.0.35" 1.9 CATEGORY="network" 1.10 SHORT_DESC="A secure FTP daemon" 1.11 MAINTAINER="erjo@slitaz.org" 1.12 @@ -17,7 +17,7 @@ 1.13 cd $src 1.14 ./configure --prefix=/usr --without-pam $CONFIGURE_ARGS && 1.15 make && 1.16 - make DESTDIR=$PWD/_pkg install 1.17 + make DESTDIR=$DESTDIR install 1.18 } 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 @@ -26,17 +26,16 @@ 1.22 mkdir -p $fs/usr $fs/etc/init.d 1.23 cp -a $_pkg/usr/bin $fs/usr 1.24 cp -a $_pkg/usr/sbin $fs/usr 1.25 - install -g root -o root -m 0755 stuff/pure-ftpd $fs/etc/init.d 1.26 + install -g root -o root -m 0755 $stuff/pure-ftpd $fs/etc/init.d 1.27 } 1.28 1.29 post_install() 1.30 { 1.31 echo "" 1.32 echo -e "\nTo starts $PACKAGE server you can run :\n" 1.33 - echo "/etc/init.d/$PACKAGE start" 1.34 - echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n" 1.35 + echo "/etc/init.d/$PACKAGE start" 1.36 + echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n" 1.37 echo "" 1.38 echo "You may install pure-ftpd-extras package to get pure-config.pl " 1.39 echo " pure-config.py facilities." 1.40 - 1.41 }