PKGBUILDs/aur/python-configshell-fb/PKGBUILD

32 lines
1 KiB
Bash
Raw Normal View History

2014-05-03 15:54:55 +00:00
# Contributor: Johannes Dewender arch at JonnyJD dot net
2014-10-02 00:23:54 +00:00
pkgname=('python-configshell-fb' 'python2-configshell-fb')
2014-05-03 15:54:55 +00:00
_pkgname=configshell-fb
2016-06-29 00:23:59 +00:00
pkgver=1.1.fb20
2015-01-21 01:12:05 +00:00
pkgrel=1
2014-05-03 15:54:55 +00:00
pkgdesc="python framework for building simple CLI applications (free branch)"
arch=('any')
url="https://github.com/agrover/configshell-fb"
license=('Apache')
options=()
2014-12-06 17:11:50 +00:00
makedepends=('python-setuptools' 'python2-setuptools')
2014-05-03 15:54:55 +00:00
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$_pkgname-$pkgver.tar.gz)
2016-06-29 00:23:59 +00:00
sha256sums=('4a9f4b59ccd256a1c4d4c270be43798853a91d9fec29bd0ba006b88b7476f383')
2014-05-03 15:54:55 +00:00
2014-10-02 00:23:54 +00:00
package_python-configshell-fb() {
depends=('python-pyparsing' 'python-urwid')
provides=('python-configshell')
conflicts=('python-configshell')
2014-05-03 15:54:55 +00:00
cd "$srcdir/$_pkgname-$pkgver"
2014-10-02 00:23:54 +00:00
python setup.py install --root="$pkgdir/" --optimize=1
2014-05-03 15:54:55 +00:00
}
2014-10-02 00:23:54 +00:00
package_python2-configshell-fb() {
depends=('python2-pyparsing' 'python2-urwid')
provides=('python2-configshell')
conflicts=('python2-configshell')
2014-05-03 15:54:55 +00:00
cd "$srcdir/$_pkgname-$pkgver"
2014-10-02 00:23:54 +00:00
python2 setup.py install --root="$pkgdir/" --optimize=1
2014-05-03 15:54:55 +00:00
}
# vim:set ts=2 sw=2 et: