diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-08 19:29:45 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-08 19:33:40 -0300 |
commit | 396b933005d2b0d58865c216167f177114214fe9 (patch) | |
tree | 3d515178c347ab4c06850281aa59333204e74e15 /testing/py3-sphinxcontrib-cartouche | |
parent | ab292101d2b52d3887aa37437647eb86f0eb744c (diff) | |
download | aports-396b933005d2b0d58865c216167f177114214fe9.tar.bz2 aports-396b933005d2b0d58865c216167f177114214fe9.tar.xz |
testing/py3-sphinxcontrib-cartouche: rename from py-sphinxcontrib-cartouche
Diffstat (limited to 'testing/py3-sphinxcontrib-cartouche')
-rw-r--r-- | testing/py3-sphinxcontrib-cartouche/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/py3-sphinxcontrib-cartouche/APKBUILD b/testing/py3-sphinxcontrib-cartouche/APKBUILD new file mode 100644 index 0000000000..2bd2f3704b --- /dev/null +++ b/testing/py3-sphinxcontrib-cartouche/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: Fabian Affolter <fabian@affolter-engineering.ch> +# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> +pkgname=py-sphinxcontrib-cartouche +_pkgname=cartouche +pkgver=1.1 +pkgrel=1 +pkgdesc="Sphinx cartouche extension" +url="https://code.google.com/p/cartouche/" +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="9184415c782c1b715dc50d6d5a70bd9e cartouche-1.1.tar.gz" +sha256sums="01e44e89d609785f97920303918c272939ec9ce7b060374a3bc2adf7db6c7043 cartouche-1.1.tar.gz" +sha512sums="61428f1ec5c690f59d81925af716dc6747c7a2192179ca8cb91c4019248014015159c531df5355f6eeef11bcd7a3e17eb30c420ec8cd3f082fe60ca428dd7218 cartouche-1.1.tar.gz" |