wok view gadmin-proftpd/receipt @ rev 25031

Add fatcat
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 20 09:25:51 2022 +0000 (23 months ago)
parents 52649f27a0da
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gadmin-proftpd"
4 VERSION="0.4.7"
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="https://github.com/sedwards/gadmintools_src_pkgs/raw/master/$TARBALL"
13 DEPENDS="gtk+ proftpd"
14 BUILD_DEPENDS="gtk+-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://de.wikipedia.org/wiki/GAdmintools 2>/dev/null | \
21 sed '/GAdmin-ProFTPD:/!d;s|.*sion: ||;s| .*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure --prefix=/usr \
28 --sysconfdir=/etc \
29 --mandir=/usr/share/man \
30 $CONFIGURE_ARGS &&
31 make &&
32 make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/share/applications
39 cp -a $install/etc $fs
40 cp -a $install/usr/sbin $fs/usr
41 cp -a $install/usr/share/pixmaps $fs/usr/share
42 cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications
43 }