# SliTaz package receipt. PACKAGE="gtick" VERSION="0.5.5" CATEGORY="multimedia" SHORT_DESC="GTick is a metronome application." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" WEB_SITE="http://www.antcom.de/gtick/" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="${WEB_SITE}download/$TARBALL" SUGGESTED="gtick-lang" DEPENDS="gtk+ libogg libsndfile libxml2 pulseaudio xorg-libXdamage" BUILD_DEPENDS="apulse gtk+-dev libxml2-dev pkg-config pulseaudio-dev xorg-xproto" # What is the latest version available today? current_version() { wget -O - $WEB_SITE 2>/dev/null | \ sed "/$PACKAGE-[0-9]/!d;s|.*$PACKAGE-||;s| rel.*||" | sort -Vr | sed q } # Rules to configure and make the package. compile_rules() { ./configure \ --prefix=/usr \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && make && make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { cook_copy_folders bin }