PKGBUILDs/aur/python2-pynzb/PKGBUILD

27 lines
829 B
Bash
Raw Normal View History

2011-03-22 04:29:33 +00:00
# Contributor : Daniel Neve <the.mephit@googlemail.com>
plugrel=1
pkgshort=pynzb
pkgname=python2-$pkgshort
pkgver=0.1.0
2012-04-15 17:07:55 +00:00
pkgrel=2
2011-03-22 04:29:33 +00:00
pkgdesc="A unified API for parsing NZB files"
arch=('any')
url="http://pypi.python.org/pypi/pynzb/"
license=('BSD')
depends=('python2' 'expat')
2012-04-15 17:07:55 +00:00
makedepends=('python2-distribute')
2011-03-22 04:29:33 +00:00
conflicts=('pynzb')
optdepends=('python-lxml: Use lxml instead of expat')
source=(http://pypi.python.org/packages/source/p/$pkgshort/$pkgshort-$pkgver.tar.gz
https://www.github.com/ericflo/$pkgshort/raw/master/LICENSE.txt)
md5sums=('63c74a36348ac28aa99732dcb8be8c59'
'87d87599921bae943f981b28ecfc3cc1')
build() {
cd $srcdir/$pkgshort-$pkgver
python2 setup.py install --root=$pkgdir/ --optimize=1 || return 1
install -D -m644 $srcdir/LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE.txt
}