wok view vsftpd/receipt @ rev 19674

Add get-opera-blink
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Feb 08 05:35:49 2017 +0200 (2017-02-08)
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 }