mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
28 lines
772 B
Bash
28 lines
772 B
Bash
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
|
pkgname=python2-configshell-fb
|
|
_pkgname=configshell-fb
|
|
pkgver=1.1.fb9
|
|
pkgrel=3
|
|
epoch=
|
|
pkgdesc="python framework for building simple CLI applications (free branch)"
|
|
arch=('any')
|
|
url="https://github.com/agrover/configshell-fb"
|
|
license=('Apache')
|
|
depends=('python2-pyparsing' 'python2-urwid')
|
|
provides=('python2-configshell')
|
|
conflicts=('python2-configshell')
|
|
options=()
|
|
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$_pkgname-$pkgver.tar.gz)
|
|
md5sums=('48b7c9be66c9e450585598504c2fde45')
|
|
|
|
build() {
|
|
cd "$srcdir/$_pkgname-$pkgver"
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$_pkgname-$pkgver"
|
|
python2 setup.py install --skip-build --root="$pkgdir/" --optimize=1
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|