wok diff transmission/receipt @ rev 43

Add : gcolor2, geany, gftp, gimp, gitmail, gqview, grsync
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 14:18:59 2007 +0100 (2007-12-18)
parents
children 4959e5789caa
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/transmission/receipt	Tue Dec 18 14:18:59 2007 +0100
     1.3 @@ -0,0 +1,40 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="transmission"
     1.7 +VERSION="0.82"
     1.8 +CATEGORY="extra"
     1.9 +SHORT_DESC="Light and easy to use BitTorrent client."
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +DEPENDS="gtk+"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://transmission.m0k.org/"
    1.14 +WGET_URL="http://download.m0k.org/transmission/files/$TARBALL"
    1.15 +
    1.16 +# Rules to configure and make the package.
    1.17 +compile_rules()
    1.18 +{
    1.19 +	# Upstream did a funny tarball...
    1.20 +	mkdir -p $PACKAGE-$VERSION
    1.21 +	tar xzf $SOURCES_REPOSITORY/$TARBALL -C $PACKAGE-$VERSION
    1.22 +	
    1.23 +	# For 0.92 (need openssl lib).
    1.24 +	#bzip2 -d -c "$SOURCES_REPOSITORY/$TARBALL" | tar -xf -
    1.25 +	
    1.26 +	cd $src
    1.27 +	./configure --prefix=/usr  --disable-openssl \
    1.28 +	$CONFIGURE_ARGS
    1.29 +	make
    1.30 +	strip gtk/transmission-gtk
    1.31 +	strip cli/transmissioncli
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	mkdir -p $fs/usr/bin $fs/usr/share/locale/fr/LC_MESSAGES \
    1.38 +	$fs/usr/share/pixmaps
    1.39 +	cp -a $src/gtk/transmission-gtk $fs/usr/bin
    1.40 +	# Resized pixmap and French locale.
    1.41 +	cp -a stuff/transmission.png $fs/usr/share/pixmaps
    1.42 +	cp -a $src/gtk/po/fr.mo $fs/usr/share/locale/fr/LC_MESSAGES/transmission-gtk.mo
    1.43 +}