wok view vsftpd/receipt @ rev 11864

up vsftpd 2.3.5. Added description files
author Samuel Trassare <samuel_trassare@yahoo.com>
date Mon Feb 27 12:41:31 2012 -0800 (2012-02-27)
parents 7aef52db895d
children 1cdc31757d53
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 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://vsftpd.beasts.org/"
11 WGET_URL="https://security.appspot.com/downloads/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make
18 #&& make DESTDIR=$PWD/_pkg install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin $fs/etc
25 cp -a $src/vsftpd $fs/usr/bin
26 cp -a $src/vsftpd.conf $fs/etc
27 }