wok annotate d-feet/receipt @ rev 24989

updated nfs-utils (2.4.3 -> 2.6.1)
author Hans-G?nter Theisgen
date Thu May 12 17:03:36 2022 +0100 (2022-05-12)
parents 240fb3120638
children
rev   line source
monghitri@14134 1 # SliTaz package receipt.
monghitri@14134 2
monghitri@14134 3 PACKAGE="d-feet"
monghitri@14134 4 VERSION="0.1.15"
monghitri@14134 5 CATEGORY="system-tools"
monghitri@14134 6 SHORT_DESC="D-Feet is an easy to use D-Bus debugger."
monghitri@14134 7 MAINTAINER="monghitri@aruba.it"
pascal@15002 8 LICENSE="GPL2"
monghitri@14134 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
monghitri@14134 10 WEB_SITE="https://live.gnome.org/DFeet/"
pascal@24111 11 WGET_URL="https://download.gnome.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
pascal@15002 12
monghitri@14134 13 DEPENDS="dbus dbus-python pygtk python"
pascal@21580 14 BUILD_DEPENDS="dbus-dev dbus-python-dev pygtk-dev python-dev python-setuptools"
monghitri@14134 15
pascal@24111 16 current_version()
pascal@24111 17 {
pascal@24111 18 wget -O - $(dirname $WGET_URL) 2>/dev/null | \
pascal@24111 19 sed "/$PACKAGE-[0-9]/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|" | sort -Vr | sed q
pascal@24111 20 }
pascal@24111 21
monghitri@14134 22 # Rules to configure and make the package.
monghitri@14134 23 compile_rules()
monghitri@14134 24 {
monghitri@14134 25 python setup.py install --root=$DESTDIR
monghitri@14134 26 }
monghitri@14134 27
monghitri@14134 28 # Rules to gen a SliTaz package suitable for Tazpkg.
monghitri@14134 29 genpkg_rules()
monghitri@14134 30 {
monghitri@14134 31 mkdir -p $fs
monghitri@14134 32 cp -a $install/usr $fs
monghitri@14134 33 }