diff --git a/aur/flexget/PKGBUILD b/aur/flexget/PKGBUILD old mode 100644 new mode 100755 index 7367b7491..2e9e22e16 --- a/aur/flexget/PKGBUILD +++ b/aur/flexget/PKGBUILD @@ -1,31 +1,30 @@ +# Maintainer: Amr Hassan # Maintainer: Nathan Owe - -plugrel=1 - pkgname=flexget _pkgname=FlexGet -pkgver=1.0r2899 +pkgver=1.0r2983 pkgrel=1 pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.)" arch=(any) url="http://flexget.com/" depends=('python2' 'python2-cherrypy' 'python2-progressbar' \ - 'python2-pynzb' 'pyrss2gen' 'python2-sqlalchemy' 'python2-html5lib' \ - 'python-beautifulsoup' 'python2-yaml' 'python2-feedparser' - 'python2-flask' 'python2-requests-0.10.0' 'python2-certifi>=0.0.7' - 'python2-chardet>=1.0.0' 'python2-dateutil') + 'python2-pynzb' 'pyrss2gen' 'python2-sqlalchemy' 'python2-html5lib' \ + 'python-beautifulsoup' 'python2-yaml' 'python2-feedparser' + 'python2-flask' 'python2-requests-0.10.0' 'python2-certifi>=0.0.7' + 'python2-chardet>=1.0.0' 'python2-dateutil') makedepends=('python2-distribute') license=('MIT') +#install=('flexget.install') source=("http://download.flexget.com/unstable/${_pkgname}-${pkgver}.tar.gz") -md5sums=('6a786808d0dba17bb6b9e6ad47fbb7a4') -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 + + chmod ugo+r ${pkgdir}/usr/lib/python2.7/site-packages/FlexGet-1.0-py2.7.egg-info/* + + install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } + +md5sums=('c9e46bba947c2f83a65c598f4f107df5')