wok annotate gadmin-rsync/receipt @ rev 25032

giblib: modified configure parameter
author Hans-G?nter Theisgen
date Fri May 20 10:31:08 2022 +0100 (2022-05-20)
parents 8dd8bab3f0ca
children 9c8ba5b98eb9
rev   line source
pascal@14767 1 # SliTaz package receipt.
pascal@14767 2
pascal@14767 3 PACKAGE="gadmin-rsync"
pascal@14767 4 VERSION="0.1.8"
pascal@14767 5 CATEGORY="x-window"
pascal@14767 6 SHORT_DESC="GTK+ configuration tool for rsync."
pascal@14767 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pascal@14767 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20672 10 WEB_SITE="https://web.archive.org/web/20180218034430/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+ rsync"
pascal@14767 14 BUILD_DEPENDS="gtk+-dev"
pascal@14767 15
pascal@14767 16
pascal@24694 17 # What is the latest version available today?
pascal@24694 18 current_version()
pascal@24694 19 {
pascal@24694 20 wget -O - https://de.wikipedia.org/wiki/GAdmintools 2>/dev/null | \
pascal@24694 21 sed '/GAdmin-RSYNC:/!d;s|.*sion: ||;s| .*||;q'
pascal@24694 22 }
pascal@24694 23
pascal@14767 24 # Rules to configure and make the package.
pascal@14767 25 compile_rules()
pascal@14767 26 {
pascal@14767 27 cd $src
pascal@14767 28 ./configure --prefix=/usr \
pascal@14767 29 --sysconfdir=/etc \
pascal@14767 30 --mandir=/usr/share/man \
pascal@14767 31 $CONFIGURE_ARGS &&
pascal@14767 32 make &&
pascal@14767 33 make DESTDIR=$DESTDIR install
pascal@14767 34 }
pascal@14767 35
pascal@14767 36 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@14767 37 genpkg_rules()
pascal@14767 38 {
pascal@14767 39 mkdir -p $fs/usr/share/applications
pascal@14767 40 cp -a $install/etc $fs
pascal@14767 41 cp -a $install/usr/sbin $fs/usr
pascal@14767 42 cp -a $install/usr/share/pixmaps $fs/usr/share
pascal@14767 43 cp -a $stuff/$PACKAGE.desktop $fs/usr/share/applications
pascal@14767 44 }