mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-sphinxcontrib-programoutput
|
|
_pkgname=sphinxcontrib-programoutput
|
|
pkgver=0.8
|
|
pkgrel=0
|
|
pkgdesc="Sphinx programoutput extension"
|
|
url="https://pypi.python.org/pypi/sphinxcontrib-programoutput"
|
|
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="bb0be17ef13f268378b2af51ff413c58 sphinxcontrib-programoutput-0.8.tar.gz"
|
|
sha256sums="1776a03124bab87e35576f7f3992fc21d5bb457321b35e6023eb011dbed10a25 sphinxcontrib-programoutput-0.8.tar.gz"
|
|
sha512sums="9ab769f794cf8c47f2d755b343c1326b8335c1f8161294727abada81af189545d549350536d28ac2c5f27cc309330f875b7affef6f997651e3a9f9dfbe6bd174 sphinxcontrib-programoutput-0.8.tar.gz"
|