blob: a79d57d91be3a5dc373a6b0dc82c59d2204dfba0 (
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.82
8 release=1
9 source=(http://download.m0k.org/$name/files/$name-$version.tar.xz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --mandir=/usr/man \
16 --disable-nls \
17 --enable-cli \
18 --enable-daemon \
19 --without-gtk
20 make
21 make DESTDIR=$PKG install
22
23 rm $PKG/usr/share/transmission/web/LICENSE
24 }
|