mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-sphinxcontrib-webmocks
|
|
_pkgname=sphinxcontrib-webmocks
|
|
pkgver=0.1.0
|
|
pkgrel=0
|
|
pkgdesc="Sphinx webmocks extension"
|
|
url="https://pypi.python.org/pypi/sphinxcontrib-webmocks"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="python2 py-sphinx"
|
|
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="8fc3b4a64e6a6a859a67beae93b16924 sphinxcontrib-webmocks-0.1.0.tar.gz"
|
|
sha256sums="681e6f88eb82abbc97faced2f6b355b9621c8e69e61c9e19fd3778167892f588 sphinxcontrib-webmocks-0.1.0.tar.gz"
|
|
sha512sums="17da234aad852f35ad7010607d78dead1d7933fed5bbc8c064a6591157b8c4760693f5906213e54ea12c87d12f839be444e16ed9a0746e045d0beeb46f4cad87 sphinxcontrib-webmocks-0.1.0.tar.gz"
|