transmission.yukseltildi

This commit is contained in:
milisman 2016-05-31 17:38:23 +00:00
parent 97d9f72e0b
commit 94515f1742
1 changed files with 15 additions and 14 deletions

View File

@ -1,21 +1,22 @@
# Description: Light and fast Bittorent client (GTK Interface) # Description: BitTorrent client/daemon with command-line and web user interface
# URL: http://www.transmissionbt.com/ # URL: http://transmission.m0k.org/
# Packager: milisarge # Packager: milisarge
# Depends on: intltool curl libevent gtk3 desktop-file-utils gtk-update-icon-cache # Depends on: curl libevent gtk3 intltool
name=transmission name=transmission
version=2.90 version=2.92
release=1 release=1
source=(https://download.transmissionbt.com/files/$name-$version.tar.xz)
source=(http://download-origin.transmissionbt.com/files/transmission-$version.tar.xz)
build() { build() {
cd transmission-$version cd $name-$version
./configure --prefix=/usr \
--disable-cli \ ./configure --prefix=/usr \
--disable-daemon \ --enable-cli \
--without-qt \ --enable-daemon \
--with-gtk --with-gtk
make make
make DESTDIR=$PKG install make DESTDIR=$PKG install
rm $PKG/usr/share/transmission/web/LICENSE
} }