wok view transmission-remote-gtk/receipt @ rev 17657

Up: flex 2.5.39
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 14 22:45:48 2015 +0000 (2015-02-14)
parents 7896f0694ef6
children e9f002054831
line source
1 # SliTaz package receipt.
3 PACKAGE="transmission-remote-gtk"
4 VERSION="1.1.1"
5 CATEGORY="network"
6 SHORT_DESC="GTK remote control for the Transmission BitTorrent client"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://code.google.com/p/transmission-remote-gtk/"
11 WGET_URL="http://transmission-remote-gtk.googlecode.com/files/$TARBALL"
13 DEPENDS="gtk+ json-glib curl libnotify libunique"
14 BUILD_DEPENDS="gtk+-dev json-glib-dev curl-dev libnotify-dev \
15 libunique-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 CFLAGS="$CFLAGS
22 ./configure \
23 --enable-gtk2 \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/share/icons $fs/usr/share
35 cp -a $install/usr/share/applications $fs/usr/share
36 }