mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 07:31:35 +01:00
32 lines
966 B
Plaintext
32 lines
966 B
Plaintext
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=py3-configshell
|
|
_pkgname=configshell
|
|
pkgver=1.1_p25
|
|
_ver=${pkgver/_rc/rc}
|
|
_ver=${_ver/_p/.fb}
|
|
pkgrel=1
|
|
pkgdesc="Python library that provides a framework for building simple but nice CLI-based applications"
|
|
url="https://github.com/agrover/configshell-fb"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3 py3-six py3-urwid py3-parsing"
|
|
depends_dev=""
|
|
makedepends="$depends_dev python3-dev"
|
|
install=""
|
|
subpackages=""
|
|
options="!check" # no test suite
|
|
source="$_pkgname-fb-$_ver.tar.gz::https://github.com/agrover/configshell-fb/archive/v$_ver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-fb-$_ver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="7f0af5014600d148326b4692a84fcc388d3ea175a79566a5e3b1ede89d9dbc90be5f4b1481e69dd5654e88578b3732441a822e4d89cd0504d0ad3221d3a2f027 configshell-fb-1.1.fb25.tar.gz"
|