blob: 76a179c4c47b87e4fd7bce204dfac2d2dc7df4f2 (
plain)
1 # Description: BitTorrent client/daemon with command-line and web user interface
2 # URL: http://transmission.m0k.org/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: curl libevent
5
6 name=transmission
7 version=2.94
8 release=1
9 source=(https://github.com/transmission/transmission-releases/raw/master/transmission-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --disable-nls \
16 --enable-cli \
17 --enable-daemon \
18 --without-gtk
19 make
20 make DESTDIR=$PKG install
21
22 rm $PKG/usr/share/transmission/web/LICENSE
23 }
|