18 lines
451 B
Plaintext
18 lines
451 B
Plaintext
# Description: Swarming peer-to-peer download tool
|
|
# URL: http://www.bittorrent.com/
|
|
# Maintainer: Matt Housh, jaeger at crux dot nu
|
|
# Depends on: python, twisted-core, pycrypto
|
|
# Nice to have: pygtk
|
|
|
|
name=bittorrent
|
|
version=4.20.6
|
|
release=1
|
|
source=(http://download.bittorrent.com/dl/BitTorrent-$version.tar.gz)
|
|
|
|
build() {
|
|
cd BitTorrent-$version
|
|
:> makei18n.sh
|
|
python setup.py install --root=$PKG
|
|
rm -rf $PKG/usr/share/doc $PKG/usr/share/locale
|
|
}
|