transmission: cut of the gtk gui, as requested by sepen

This commit is contained in:
Juergen Daubert 2009-06-04 09:30:43 +02:00
parent 62a47773a4
commit 84096ef149
2 changed files with 8 additions and 11 deletions

View File

@ -1,6 +1,5 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/transmission
-rwxr-xr-x root/root usr/bin/transmission-daemon
-rwxr-xr-x root/root usr/bin/transmission-remote
-rwxr-xr-x root/root usr/bin/transmissioncli
@ -8,13 +7,8 @@ drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/transmission-daemon.1.gz
-rw-r--r-- root/root usr/man/man1/transmission-remote.1.gz
-rw-r--r-- root/root usr/man/man1/transmission.1.gz
-rw-r--r-- root/root usr/man/man1/transmissioncli.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/transmission.desktop
drwxr-xr-x root/root usr/share/pixmaps/
-rw-r--r-- root/root usr/share/pixmaps/transmission.png
drwxr-xr-x root/root usr/share/transmission/
drwxr-xr-x root/root usr/share/transmission/web/
drwxr-xr-x root/root usr/share/transmission/web/images/

View File

@ -1,21 +1,24 @@
# Description: BitTorrent client/daemon with command-line and optional gtk user interface
# URL: http://transmission.m0k.org/
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
# Depends on: openssl curl intltool gtk
# Depends on: openssl curl
name=transmission
version=1.61
release=1
release=2
source=(http://download.m0k.org/$name/files/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man
./configure --prefix=/usr \
--mandir=/usr/man \
--disable-nls \
--disable-gtk \
--enable-cli \
--enable-daemon
make
make DESTDIR=$PKG install
sed -ri '/\[.+\]=/d' $PKG/usr/share/applications/transmission.desktop
rm -r $PKG/usr/share/{locale,icons}
rm $PKG/usr/share/transmission/web/LICENSE
}