mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-23 00:32:22 +01:00
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-isbn
|
|
_pkgname=pyisbn
|
|
pkgver=1.0.0
|
|
pkgrel=0
|
|
pkgdesc="A module for working with 10- and 13-digit ISBNs"
|
|
url="https://github.com/JNRowe/pyisbn"
|
|
arch="noarch"
|
|
license="GPL3+"
|
|
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="072dfa58b07d7b0c75a0cec70fb83620 pyisbn-1.0.0.tar.gz"
|
|
sha256sums="85a3e5545e8e824c1c8e05a50f2962e45278ed54d74027957ae790cac6e8689f pyisbn-1.0.0.tar.gz"
|
|
sha512sums="cb4dc6a1f52ffec818fb96448fe18b244b05d2739af3cf56a85b9f4c9d72a2783d3a279fdd6fd8bca853451443cdc4b82e839ad3a8e7d4af2b9f91257b0a3c73 pyisbn-1.0.0.tar.gz"
|