mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-02 15:21:43 +01:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-dtopt
|
|
_pkgname=dtopt
|
|
pkgver=0.1
|
|
pkgrel=0
|
|
pkgdesc="Additional options to doctest examples"
|
|
url="http://pypi.python.org/pypi/dtopt/"
|
|
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="9a41317149e926fcc408086aedee6bab dtopt-0.1.tar.gz"
|
|
sha256sums="06ae07a12294a7ba708abaa63f838017d1a2faf6147a1e7a14ca4fa28f86da7f dtopt-0.1.tar.gz"
|
|
sha512sums="de835eb5c8ba25939bb989f53d1fd85d738ea15ed1fd787d76b2d34aeb141a06186b1db74b31dfe5d7fd70640ec253f6f2b29bff46280ef2527551e6a860095d dtopt-0.1.tar.gz"
|