PKGBUILDs/aur/python2-configshell-fb/PKGBUILD
Kevin Mihelich ba69cda25c aur updates
2014-01-12 18:45:46 +00:00

30 lines
808 B
Bash

# Contributor: Johannes Dewender arch at JonnyJD dot net
pkgname=python2-configshell-fb
_pkgname=configshell-fb
pkgver=1.1.fb11
pkgrel=1
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')
makedepends=('python2-setuptools')
provides=('python2-configshell')
conflicts=('python2-configshell')
options=()
source=(https://fedorahosted.org/releases/t/a/targetcli-fb/$_pkgname-$pkgver.tar.gz)
md5sums=('df98b31141060d37f4656528a0c3b711')
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: