PKGBUILDs/aur/flexget/PKGBUILD

33 lines
916 B
Bash
Raw Normal View History

2011-03-22 04:29:33 +00:00
# Maintainer: Nathan Owe <ndowens.aur at gmail dot com>
plugrel=3
2011-03-22 04:29:33 +00:00
pkgname=flexget
_pkgname=FlexGet
2011-12-07 21:27:09 +00:00
pkgver=1.0r2495
2011-03-22 04:29:33 +00:00
pkgrel=1
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.)"
arch=(any)
url="http://flexget.com/"
2011-10-23 01:00:35 +00:00
depends=('python2' 'python2-cherrypy' 'python2-flask' 'python-progressbar' \
2011-03-22 04:29:33 +00:00
'python2-pynzb' 'pyrss2gen' 'python2-sqlalchemy' 'python-html5lib' \
'python-beautifulsoup' 'python2-yaml' 'python2-feedparser')
2011-03-22 04:29:33 +00:00
makedepends=('python2-distribute')
license=('MIT')
install=('flexget.install')
source=("http://download.flexget.com/unstable/${_pkgname}-${pkgver}.tar.gz")
2011-12-07 21:27:09 +00:00
md5sums=('5c2f882720e8f7fbea535c51631babf0')
2011-03-22 04:29:33 +00:00
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python2 setup.py build
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
python2 setup.py install --root=${pkgdir}/ optimize=1
install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}