2009-10-26 14:04:21 +01:00
|
|
|
# Description: BitTorrent client/daemon with command-line and web user interface
|
2007-12-25 17:56:22 +01:00
|
|
|
# URL: http://transmission.m0k.org/
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2010-06-17 17:11:16 +02:00
|
|
|
# Depends on: curl libevent
|
2007-12-25 17:56:22 +01:00
|
|
|
|
|
|
|
name=transmission
|
2018-12-15 21:10:10 +01:00
|
|
|
version=2.94
|
2018-02-02 17:39:46 +01:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/transmission/transmission-releases/raw/master/transmission-$version.tar.xz)
|
2007-12-25 17:56:22 +01:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
2008-08-08 09:11:22 +02:00
|
|
|
|
2009-06-04 09:30:43 +02:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--disable-nls \
|
|
|
|
--enable-cli \
|
2011-10-21 13:45:50 +02:00
|
|
|
--enable-daemon \
|
|
|
|
--without-gtk
|
2007-12-25 17:56:22 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2008-08-08 09:11:22 +02:00
|
|
|
|
|
|
|
rm $PKG/usr/share/transmission/web/LICENSE
|
2007-12-25 17:56:22 +01:00
|
|
|
}
|