wok view gadmin-proftpd/receipt @ rev 20648

Up zstd (1.3.8)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 12 12:12:27 2019 +0100 (2019-01-12)
parents 2b9f96603415
children 8dd8bab3f0ca
line source
1 # SliTaz package receipt.
3 PACKAGE="gadmin-proftpd"
4 VERSION="0.4.6"
5 CATEGORY="x-window"
6 SHORT_DESC="GTK+ configuration tool for ProFTPd."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://dalalven.dtdns.net/linux/gadmintools-webpage/"
11 WGET_URL="http://dalalven.dtdns.net/linux/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+ proftpd"
14 BUILD_DEPENDS="gtk+-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share/applications
32 cp -a $install/etc $fs
33 cp -a $install/usr/sbin $fs/usr
34 cp -a $install/usr/share/pixmaps $fs/usr/share
35 cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications
36 }