wok-6.x view vsftpd/receipt @ rev 20006
Add: description.txt :: Following the standardization of packages.
author | Leonardo Laporte <hackdorte@yandex.com> |
---|---|
date | Wed Aug 02 03:46:40 2017 -0300 (2017-08-02) |
parents | 1cdc31757d53 |
children | 4c4ad11b9096 |
line source
1 # SliTaz package receipt.
3 PACKAGE="vsftpd"
4 VERSION="2.3.5"
5 CATEGORY="network"
6 SHORT_DESC="Secure FTP server"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://vsftpd.beasts.org/"
11 WGET_URL="https://security.appspot.com/downloads/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make
21 #&& make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin $fs/etc
28 cp -a $src/vsftpd $fs/usr/bin
29 cp -a $src/vsftpd.conf $fs/etc
30 }