wok view transmission/receipt @ rev 17107

transmission: qmake
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Mon Sep 01 17:26:36 2014 +0200 (2014-09-01)
parents ddfd839f2135
children dcfde3ae6114
line source
1 # SliTaz package receipt.
3 PACKAGE="transmission"
4 VERSION="2.82"
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 \
19 qmake Qt4-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 touch third-party/miniupnp/VERSION
26 ./configure \
27 --prefix=/usr \
28 --enable-lightweight \
29 $CONFIGURE_ARGS && \
30 make && make install &&
31 rm -rf $install/usr/share/applications
33 cd $src/qt && qmake qtr.pro
34 make && make INSTALL_ROOT=$install install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr/bin $fs/usr/share/applications
41 cp -a $install/usr/bin/${PACKAGE}-gtk $fs/usr/bin/${PACKAGE}
42 }
44 # Remove old packages name
45 post_install()
46 {
47 rm -f $1/usr/bin/transmission-gtk
48 rm -f $1/usr/share/applications/${PACKAGE}-gtk.desktop
49 chroot "$1/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
50 }
52 post_remove()
53 {
54 echo "Processing post-remove commands..."
55 chroot "$1/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
56 }