wok view vsftpd/receipt @ rev 11669

inkscape: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 17 16:19:43 2012 +0100 (2012-02-17)
parents
children 1001e5c1911c
line source
1 # SliTaz package receipt.
3 PACKAGE="vsftpd"
4 VERSION="2.2.0"
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="ftp://vsftpd.beasts.org/users/cevans/$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 }