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

Add get-opera-blink
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Feb 08 05:35:49 2017 +0200 (2017-02-08)
parents e9f002054831
children 6135577f4d08
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 ./configure \
22 --enable-gtk2 \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share/icons $fs/usr/share
34 cp -a $install/usr/share/applications $fs/usr/share
35 }