diff options
author | Olivier DOSSMANN <blankoworld@wanadoo.fr> | 2009-11-18 11:36:12 +0100 |
---|---|---|
committer | Olivier DOSSMANN <blankoworld@wanadoo.fr> | 2009-11-18 11:36:12 +0100 |
commit | 7aff0a278510899662ca67da198f711c26f6d12c (patch) | |
tree | d1d968127bfe0c4202715bdb798fe5157b478b8a /extra/transmission/Pkgfile | |
parent | 06e0929c098cb57fe9af7b3e727b0c38083d1353 (diff) | |
download | nutyx-pakxe-7aff0a278510899662ca67da198f711c26f6d12c.tar.gz nutyx-pakxe-7aff0a278510899662ca67da198f711c26f6d12c.tar.bz2 nutyx-pakxe-7aff0a278510899662ca67da198f711c26f6d12c.tar.xz nutyx-pakxe-7aff0a278510899662ca67da198f711c26f6d12c.zip |
MàJ de transmission#1.76-1
- suppression du surplus de dépendances
- ajout d'un fichier transmission.desktop
- ajout d'option de compilation pour avoir une interface gtk
Diffstat (limited to 'extra/transmission/Pkgfile')
-rwxr-xr-x | extra/transmission/Pkgfile | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/extra/transmission/Pkgfile b/extra/transmission/Pkgfile index 9123c3e21..62fe13498 100755 --- a/extra/transmission/Pkgfile +++ b/extra/transmission/Pkgfile @@ -1,19 +1,33 @@ # Description: Client Bittorent leger et rapide # URL: http://www.transmissionbt.com/ -# Maintainer: NuTyX core team # Packager: fred.galusik at gmail dot com -# Depends on: atk, curl, dbus, expat, fontconfig, freetype, glib, glibc, glitz, gtk, intltool, libidn, libnotify, libpng, openssl, pango, libX11, xdg-utils, zlib +# Maintainer: Blankoworld <blankoworld at wanadoo dot fr> +# Depends on: gtk, openssl, curl, xorg-xcb-util name=transmission -version=1.72 +version=1.76 release=1 -source=(http://mirrors.m0k.org/transmission/files/$name-$version.tar.bz2) +source=( http://download.m0k.org/$name/files/$name-$version.tar.bz2 \ +$name.desktop) build() { -cd $name-$version - ./configure --prefix=/usr \ - --enable-static=no - make - make DESTDIR=$PKG install + cd $name-$version + + #Compilation + ./configure --prefix=/usr \ + --mandir=/usr/man \ + --enable-nls \ + --with-gtk \ + --enable-cli \ + --enable-daemon + make + make DESTDIR=$PKG install + + # Traitement divers + rm $PKG/usr/share/transmission/web/LICENSE + + # Installation du raccourci bureau + mkdir -p $PKG/usr/share/applications + install -m 644 ../$name.desktop $PKG/usr/share/applications/ } |