wok annotate vsftpd/receipt @ rev 22179

linld: spare up to 30k more for zImage (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 13:26:32 2019 +0100 (2019-11-09)
parents 2a21689b0af7
children 934055de50e2
rev   line source
pascal@11228 1 # SliTaz package receipt.
pascal@11228 2
pascal@11228 3 PACKAGE="vsftpd"
Hans-G?nter@22117 4 VERSION="3.0.3"
pascal@11228 5 CATEGORY="network"
Hans-G?nter@22117 6 SHORT_DESC="Secure FTP server."
pascal@11228 7 MAINTAINER="erjo@slitaz.org"
pascal@15363 8 LICENSE="GPL2"
Hans-G?nter@22117 9 WEB_SITE="https://security.appspot.com/vsftpd.html"
Hans-G?nter@22117 10
pascal@11228 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
samuel_trassare@11864 12 WGET_URL="https://security.appspot.com/downloads/$TARBALL"
pascal@11228 13
pascal@11228 14 # Rules to configure and make the package.
pascal@11228 15 compile_rules()
pascal@11228 16 {
pascal@11228 17 make
pascal@11228 18 }
pascal@11228 19
pascal@11228 20 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11228 21 genpkg_rules()
pascal@11228 22 {
Hans-G?nter@22117 23 mkdir -p $fs/usr/bin
Hans-G?nter@22117 24 mkdir -p $fs/etc
Hans-G?nter@22117 25
Hans-G?nter@22117 26 cp -a $src/vsftpd $fs/usr/bin
Hans-G?nter@22117 27 cp -a $src/vsftpd.conf $fs/etc
pascal@11228 28 }