PKGBUILDs/aur/flexget/PKGBUILD

31 lines
983 B
Bash
Raw Normal View History

2011-03-22 04:29:33 +00:00
# Maintainer: Nathan Owe <ndowens.aur at gmail dot com>
2012-03-05 18:15:16 +00:00
plugrel=1
2011-03-22 04:29:33 +00:00
pkgname=flexget
_pkgname=FlexGet
2012-03-05 18:15:16 +00:00
pkgver=1.0r2782
2012-03-06 00:34:14 +00:00
pkgrel=2
2011-03-22 04:29:33 +00:00
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.)"
arch=(any)
url="http://flexget.com/"
2012-03-05 18:15:16 +00:00
depends=('python2' 'python2-cherrypy' 'python2-flask' 'python2-progressbar' \
2012-03-06 00:34:14 +00:00
'python2-pynzb' 'pyrss2gen' 'python2-sqlalchemy' 'python-html5lib' \
'python-beautifulsoup' 'python2-yaml' 'python2-feedparser' \
'python2-requests-0.10.0' 'python2-certifi>=0.0.7' 'python2-chardet>=1.0.0')
2011-03-22 04:29:33 +00:00
makedepends=('python2-distribute')
license=('MIT')
source=("http://download.flexget.com/unstable/${_pkgname}-${pkgver}.tar.gz")
2012-03-06 00:34:14 +00:00
md5sums=('e2091b19f3cc3bc205c32ea5d44a9e9d')
2011-03-22 04:29:33 +00:00
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
2012-03-06 00:34:14 +00:00
python2 setup.py build
2011-03-22 04:29:33 +00:00
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python2 setup.py install --root=${pkgdir}/ optimize=1
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}