wok view vsftpd/receipt @ rev 12809

Up: midori (0.4.6) security fix (must be up in stable but need last vala, someone to cook on stable before commit ?)
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 19 15:20:09 2012 +0200 (2012-05-19)
parents 1001e5c1911c
children 2a21689b0af7
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 BUILD_DEPENDS="wget"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://vsftpd.beasts.org/"
12 WGET_URL="https://security.appspot.com/downloads/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make
19 #&& make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/etc
26 cp -a $src/vsftpd $fs/usr/bin
27 cp -a $src/vsftpd.conf $fs/etc
28 }