wok view transmission/receipt @ rev 17645

Up: transmission 2.84
author Alexander Medvedev <devl547@gmail.com>
date Sat Feb 14 21:41:45 2015 +0000 (2015-02-14)
parents dcfde3ae6114
children 171e47918ca4
line source
1 # SliTaz package receipt.
3 PACKAGE="transmission"
4 VERSION="2.84"
5 CATEGORY="network"
6 SHORT_DESC="Light and easy to use BitTorrent client."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 SUGGESTED="transmission-web transmission-cli transmission-daemon"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WEB_SITE="http://www.transmissionbt.com/"
12 WGET_URL="https://transmission.cachefly.net/$TARBALL"
13 TAGS="torrent"
15 DEPENDS="gtk+3 libssl libcurl libgio dbus dbus-glib \
16 xorg-libXdamage libnotify libevent"
17 BUILD_DEPENDS="gtk+3-dev openssl-dev curl-dev curl intltool \
18 expat-dev gettext dbus-dev dbus-glib-dev libevent-dev wget tar"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 touch third-party/miniupnp/VERSION
25 ./configure \
26 --prefix=/usr \
27 --enable-lightweight \
28 $CONFIGURE_ARGS && \
29 make && make install &&
30 rm -rf $install/usr/share/applications $src/macosx
31 #For gcc v4.7+
32 #cd $src/qt && qmake qtr.pro
33 #make && make INSTALL_ROOT=$install install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/bin $fs/usr/share/applications
40 cp -a $install/usr/bin/${PACKAGE}-gtk $fs/usr/bin/${PACKAGE}
41 }
43 # Remove old packages name
44 post_install()
45 {
46 rm -f $1/usr/bin/transmission-gtk
47 rm -f $1/usr/share/applications/${PACKAGE}-gtk.desktop
48 chroot "$1/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
49 }
51 post_remove()
52 {
53 echo "Processing post-remove commands..."
54 chroot "$1/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
55 }