wok annotate pure-ftpd/receipt @ rev 17024

usbids: up 20140731
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Aug 14 09:20:02 2014 +0000 (2014-08-14)
parents 30dce14800a5
children 6135577f4d08
rev   line source
erjo@755 1 # SliTaz package receipt.
erjo@755 2
erjo@755 3 PACKAGE="pure-ftpd"
slaxemulator@11358 4 VERSION="1.0.35"
pascal@1423 5 CATEGORY="network"
erjo@755 6 SHORT_DESC="A secure FTP daemon"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
pascal@15376 8 LICENSE="BSD"
erjo@755 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@755 10 WEB_SITE="http://www.pureftpd.org/project/pure-ftpd"
erjo@755 11 WGET_URL="http://download.pureftpd.org/pub/pure-ftpd/releases/$TARBALL"
erjo@2983 12 HANDBOOK_URL="http://www.pureftpd.org/project/pure-ftpd/doc"
erjo@755 13
erjo@11635 14 DEPENDS="attr libcap libssl"
erjo@11635 15 BUILD_DEPENDS="openssl-dev"
erjo@11635 16
erjo@755 17 # Rules to configure and make the package.
erjo@755 18 compile_rules()
erjo@755 19 {
erjo@755 20 cd $src
erjo@11635 21 ./configure --prefix=/usr \
erjo@11635 22 --without-pam \
erjo@11635 23 --with-puredb \
erjo@11635 24 --with-extauth \
erjo@11635 25 $CONFIGURE_ARGS && make && make install
erjo@755 26 }
erjo@755 27
erjo@755 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@755 29 genpkg_rules()
erjo@755 30 {
erjo@755 31 mkdir -p $fs/usr $fs/etc/init.d
pascal@15376 32 cp -a $install/usr/bin $fs/usr
pascal@15376 33 cp -a $install/usr/sbin $fs/usr
slaxemulator@11358 34 install -g root -o root -m 0755 $stuff/pure-ftpd $fs/etc/init.d
erjo@755 35 }
erjo@755 36
erjo@755 37 post_install()
erjo@755 38 {
erjo@755 39 echo ""
erjo@755 40 echo -e "\nTo starts $PACKAGE server you can run :\n"
slaxemulator@11358 41 echo "/etc/init.d/$PACKAGE start"
slaxemulator@11358 42 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n"
erjo@755 43 echo ""
erjo@755 44 echo "You may install pure-ftpd-extras package to get pure-config.pl "
erjo@755 45 echo " pure-config.py facilities."
erjo@755 46 }