wok view gadmin-squid/receipt @ rev 25031

Add fatcat
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 20 09:25:51 2022 +0000 (22 months ago)
parents 52649f27a0da
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gadmin-squid"
4 VERSION="0.1.4"
5 CATEGORY="x-window"
6 SHORT_DESC="GTK+ configuration tool for SQUID."
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+ squid"
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-SQUID:/!d;s|.*sion: ||;s| .*||;q'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 cd $src
28 ./configure --prefix=/usr \
29 --sysconfdir=/etc \
30 --localstatedir=/var \
31 --mandir=/usr/share/man \
32 $CONFIGURE_ARGS &&
33 make &&
34 make DESTDIR=$DESTDIR install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr/share/applications
41 cp -a $install/etc $fs
42 cp -a $install/usr/sbin $fs/usr
43 cp -a $install/usr/share/pixmaps $fs/usr/share
44 cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications
45 }