mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
473 B
Bash
21 lines
473 B
Bash
|
# Contributor: Jonathan Curran <jonc@icicled.net>
|
||
|
|
||
|
# No Plugbox changes, sabnzbd depends on this package.
|
||
|
|
||
|
pkgname=python-yenc
|
||
|
pkgver=0.3
|
||
|
pkgrel=1
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
pkgdesc="yenc decoder for python"
|
||
|
url="http://sabnzbd.sourceforge.net/"
|
||
|
depends=('python')
|
||
|
source=(http://sabnzbd.sourceforge.net/yenc-$pkgver.tar.gz)
|
||
|
md5sums=('7b3edd32db6c1ce566ad550e3de64c83')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/yenc-$pkgver
|
||
|
python setup.py install --root=$startdir/pkg
|
||
|
}
|
||
|
|