wok annotate gadmin-proftpd/receipt @ rev 14767

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