wok view transmission/receipt @ rev 2703

Up: udev (141)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 22 18:28:29 2009 +0200 (2009-04-22)
parents 1d043f8c9982
children ba0de3329c46
line source
1 # SliTaz package receipt.
3 PACKAGE="transmission"
4 VERSION="1.51"
5 CATEGORY="network"
6 SHORT_DESC="Light and easy to use BitTorrent client."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ openssl libcurl libgio dbus dbus-glib xorg-libXdamage"
9 BUILD_DEPENDS="gtk+-dev openssl-dev curl-dev curl"
10 SUGGESTED="transmission-web"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.transmissionbt.com/"
13 WGET_URL="http://download.m0k.org/transmission/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp -a $_pkg/usr/bin/$PACKAGE $fs/usr/bin
31 }
33 # Remove old packages name
34 post_install()
35 {
36 rm -f $1/usr/bin/transmission-gtk
37 }