mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
fixed flexget and plugui to use python2-cherrypy
This commit is contained in:
parent
14b5f46303
commit
9ff6830749
2 changed files with 9 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Maintainer: Nathan Owe <ndowens.aur at gmail dot com>
|
# Maintainer: Nathan Owe <ndowens.aur at gmail dot com>
|
||||||
|
|
||||||
plugrel=2
|
plugrel=3
|
||||||
|
|
||||||
pkgname=flexget
|
pkgname=flexget
|
||||||
_pkgname=FlexGet
|
_pkgname=FlexGet
|
||||||
|
@ -9,7 +9,7 @@ pkgrel=1
|
||||||
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.)"
|
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.)"
|
||||||
arch=(any)
|
arch=(any)
|
||||||
url="http://flexget.com/"
|
url="http://flexget.com/"
|
||||||
depends=('python2' 'cherrypy' 'python-flask' 'python-progressbar' \
|
depends=('python2' 'python2-cherrypy' 'python-flask' 'python-progressbar' \
|
||||||
'python2-pynzb' 'pyrss2gen' 'python2-sqlalchemy' 'python-html5lib' \
|
'python2-pynzb' 'pyrss2gen' 'python2-sqlalchemy' 'python-html5lib' \
|
||||||
'python-beautifulsoup' 'python2-yaml' 'python2-feedparser')
|
'python-beautifulsoup' 'python2-yaml' 'python2-feedparser')
|
||||||
makedepends=('python2-distribute')
|
makedepends=('python2-distribute')
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
plugrel=1
|
plugrel=1
|
||||||
|
|
||||||
pkgname=plugui-git
|
pkgname=plugui-git
|
||||||
pkgver=201100405
|
pkgver=20110705
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="PlugApps web interface"
|
pkgdesc="Arch Linux ARM web interface"
|
||||||
arch=('arm')
|
arch=('arm')
|
||||||
url="https://github.com/plugapps/PlugUI"
|
url="https://github.com/archlinuxarm/PlugUI"
|
||||||
license=('GPL')
|
license=('GPL')
|
||||||
depends=('python2' 'cherrypy' 'django' 'python2-pytz')
|
depends=('python2' 'python2-cherrypy' 'django' 'python2-pytz')
|
||||||
makedepends=('git')
|
makedepends=('git')
|
||||||
provides=('plugui')
|
provides=('plugui')
|
||||||
conflicts=('plugui')
|
conflicts=('plugui')
|
||||||
install=plugui.install
|
install=plugui.install
|
||||||
|
|
||||||
_gitroot="git://github.com/plugapps/PlugUI.git"
|
_gitroot="git://github.com/archlinuxarm/PlugUI.git"
|
||||||
_gitname="PlugUI"
|
_gitname="PlugUI"
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
|
@ -26,7 +26,7 @@ build() {
|
||||||
msg "Git checkout: Tree has been updated"
|
msg "Git checkout: Tree has been updated"
|
||||||
else
|
else
|
||||||
msg "Git checkout: Retrieving sources"
|
msg "Git checkout: Retrieving sources"
|
||||||
git clone --depth 1 ${_gitroot}
|
git clone ${_gitroot}
|
||||||
fi
|
fi
|
||||||
msg "Checkout completed"
|
msg "Checkout completed"
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ build() {
|
||||||
|
|
||||||
package() {
|
package() {
|
||||||
cd $srcdir/${_gitname}
|
cd $srcdir/${_gitname}
|
||||||
|
git checkout 4a6f7cf4
|
||||||
# create directory structure
|
# create directory structure
|
||||||
install -d $pkgdir/opt/PlugUI
|
install -d $pkgdir/opt/PlugUI
|
||||||
install -d $pkgdir/var/run/PlugUI
|
install -d $pkgdir/var/run/PlugUI
|
||||||
|
|
Loading…
Reference in a new issue