mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
31 lines
892 B
Plaintext
31 lines
892 B
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-pybles
|
|
_pkgname=Pybles
|
|
pkgver=1.0.13
|
|
pkgrel=0
|
|
pkgdesc="A Python module to represent tables in the terminal"
|
|
url="http://pypi.python.org/pypi/Pybles/"
|
|
arch="noarch"
|
|
license="GPL-3.0-or-later"
|
|
depends="python2 py-blessings"
|
|
depends_dev=""
|
|
makedepends="python2-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python2 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python2 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="90c6f9b9dc6a87c63162a8ea17c263530acf54df36833e9abdf506d3826fba849fdb0b9666737f4fd0e2ecba7068406b9d58cbdf0acd8a45fef0a2c4a5e5ed28 Pybles-1.0.13.tar.gz"
|