blob: 9d598800352f585f9b4bfcae09743f1ee2487589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# 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="python2"
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
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"
python2 setup.py build || return 1
}
package() {
cd "$_builddir"
python2 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"
|