mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-02 23:31:34 +01:00
A Python wrapper around terminal coloring, styling, and positioning https://github.com/erikrose/blessings
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-blessings
|
|
_pkgname=blessings
|
|
pkgver=1.5.1
|
|
pkgrel=0
|
|
pkgdesc="A Python wrapper around terminal coloring, styling, and positioning"
|
|
url="https://github.com/erikrose/blessings"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/$_pkgname-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="fbbddbf20b1f9a13e3fa612b1e086fd8 blessings-1.5.1.tar.gz"
|
|
sha256sums="2f6f5509fe180ae3092fdc559585a83a3cfce30afba9de25ccefc5ecfbfedbfc blessings-1.5.1.tar.gz"
|
|
sha512sums="43d26d12c7f847e4766354a46eea0ce485d69b74feac5a672be167f1656c4450ff340a7a1be61ef7fd4f9cf395e2719fc0d4034f6db6612851bafc5e330e7ee6 blessings-1.5.1.tar.gz"
|