wok-6.x annotate pure-ftpd/receipt @ rev 21505
mygestures: export commands inserted
author | Hans-G?nter Theisgen |
---|---|
date | Thu May 02 16:34:14 2019 +0100 (2019-05-02) |
parents | 6135577f4d08 |
children | db5ff6244742 |
rev | line source |
---|---|
erjo@755 | 1 # SliTaz package receipt. |
erjo@755 | 2 |
erjo@755 | 3 PACKAGE="pure-ftpd" |
pascal@21207 | 4 VERSION="1.0.48" |
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" |
pascal@20679 | 10 WEB_SITE="https://www.pureftpd.org/project/pure-ftpd" |
erjo@755 | 11 WGET_URL="http://download.pureftpd.org/pub/pure-ftpd/releases/$TARBALL" |
pascal@20679 | 12 HANDBOOK_URL="https://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@11635 | 20 ./configure --prefix=/usr \ |
erjo@11635 | 21 --without-pam \ |
erjo@11635 | 22 --with-puredb \ |
erjo@11635 | 23 --with-extauth \ |
erjo@11635 | 24 $CONFIGURE_ARGS && make && make install |
erjo@755 | 25 } |
erjo@755 | 26 |
erjo@755 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@755 | 28 genpkg_rules() |
erjo@755 | 29 { |
erjo@755 | 30 mkdir -p $fs/usr $fs/etc/init.d |
pascal@15376 | 31 cp -a $install/usr/bin $fs/usr |
pascal@15376 | 32 cp -a $install/usr/sbin $fs/usr |
slaxemulator@11358 | 33 install -g root -o root -m 0755 $stuff/pure-ftpd $fs/etc/init.d |
erjo@755 | 34 } |
erjo@755 | 35 |
erjo@755 | 36 post_install() |
erjo@755 | 37 { |
erjo@755 | 38 echo "" |
erjo@755 | 39 echo -e "\nTo starts $PACKAGE server you can run :\n" |
slaxemulator@11358 | 40 echo "/etc/init.d/$PACKAGE start" |
slaxemulator@11358 | 41 echo -e "Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf\n" |
erjo@755 | 42 } |