wok view transmission/receipt @ rev 17713

Up libmatemixer-dev wrong dir
author Yuri Pourre <yuripourre@gmail.com>
date Wed Mar 04 00:19:44 2015 -0300 (2015-03-04)
parents 728b5b963b2c
children 9e01bc6321ea
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 CFLAGS="$CFLAGS -fdata-sections -ffunction-sections \
26 -Wl,--gc-sections"
27 ./configure \
28 --prefix=/usr \
29 --enable-lightweight \
30 $CONFIGURE_ARGS && \
31 make && make install &&
32 rm -rf $install/usr/share/applications $src/macosx
33 #For gcc v4.7+
34 #cd $src/qt && qmake qtr.pro
35 #make && make INSTALL_ROOT=$install install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr/bin $fs/usr/share/applications
42 cp -a $install/usr/bin/${PACKAGE}-gtk $fs/usr/bin/${PACKAGE}
43 }
45 # Remove old packages name
46 post_install()
47 {
48 rm -f $1/usr/bin/transmission-gtk
49 rm -f $1/usr/share/applications/${PACKAGE}-gtk.desktop
50 chroot "$1/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
51 }
53 post_remove()
54 {
55 echo "Processing post-remove commands..."
56 chroot "$1/" /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas
57 }