wok annotate transmission-remote-gtk/receipt @ rev 17502

grep: fix busybox paths
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 08 10:35:01 2015 +0100 (2015-01-08)
parents 019b5cdb9fe5
children f3d03d2c6d01
rev   line source
devl547@11282 1 # SliTaz package receipt.
devl547@11282 2
devl547@11282 3 PACKAGE="transmission-remote-gtk"
devl547@11282 4 VERSION="0.7"
devl547@11282 5 CATEGORY="network"
devl547@11282 6 SHORT_DESC="GTK remote control for the Transmission BitTorrent client"
devl547@11282 7 MAINTAINER="devl547@gmail.com"
pascal@15002 8 LICENSE="GPL2"
devl547@11282 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@11282 10 WEB_SITE="http://code.google.com/p/transmission-remote-gtk/"
devl547@11282 11 WGET_URL="http://transmission-remote-gtk.googlecode.com/files/$TARBALL"
devl547@11282 12
pascal@15002 13 DEPENDS="gtk+ json-glib curl"
pascal@15002 14 BUILD_DEPENDS="gtk+-dev json-glib-dev curl-dev intltool"
pascal@15002 15
devl547@11282 16 # Rules to configure and make the package.
devl547@11282 17 compile_rules()
devl547@11282 18 {
devl547@11282 19 cd $src
devl547@11282 20 ./configure $CONFIGURE_ARGS &&
devl547@11282 21 make &&
pascal@15002 22 make DESTDIR=$DESTDIR install
devl547@11282 23 }
devl547@11282 24
devl547@11282 25 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@11282 26 genpkg_rules()
devl547@11282 27 {
devl547@11282 28 mkdir -p $fs/usr/share
pascal@15002 29 cp -a $install/usr/bin $fs/usr
pascal@15002 30 cp -a $install/usr/share/icons $fs/usr/share
pascal@15002 31 cp -a $install/usr/share/applications $fs/usr/share
devl547@11282 32 }
devl547@11282 33