wok view vsftpd/receipt @ rev 12657

tightvnc: fix rgb path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 30 18:28:33 2012 +0200 (2012-04-30)
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 }