wok view gadmin-proftpd/receipt @ rev 23456

updated pure-ftpd and pure-ftpd-pam (1.0.48 -> 1.0.49)
author Hans-G?nter Theisgen
date Fri Apr 03 13:56:35 2020 +0100 (2020-04-03)
parents 8e17dd3d81ee
children 52649f27a0da
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="https://web.archive.org/web/20180218034430/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 }