mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
32 lines
915 B
Bash
32 lines
915 B
Bash
# Maintainer: Nathan Owe <ndowens.aur at gmail dot com>
|
|
|
|
plugrel=3
|
|
|
|
pkgname=flexget
|
|
_pkgname=FlexGet
|
|
pkgver=1.0r2272
|
|
pkgrel=1
|
|
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.)"
|
|
arch=(any)
|
|
url="http://flexget.com/"
|
|
depends=('python2' 'python2-cherrypy' 'python-flask' 'python-progressbar' \
|
|
'python2-pynzb' 'pyrss2gen' 'python2-sqlalchemy' 'python-html5lib' \
|
|
'python-beautifulsoup' 'python2-yaml' 'python2-feedparser')
|
|
makedepends=('python2-distribute')
|
|
license=('MIT')
|
|
install=('flexget.install')
|
|
source=("http://download.flexget.com/unstable/${_pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('b0281b931beb55ee8b27d711f492fee6')
|
|
|
|
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
|
|
}
|
|
|
|
|