mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 17:01:34 +02:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
|
|
pkgname=py-sphinxcontrib-jsx
|
|
_pkgname=sphinxcontrib-jsx
|
|
pkgver=0.2.0
|
|
pkgrel=0
|
|
pkgdesc="Sphinx JSX directive extension"
|
|
url="https://pypi.python.org/pypi/sphinxcontrib-jsx"
|
|
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="b29d40bea29c44b435d0d76c2a61ab5a sphinxcontrib-jsx-0.2.0.tar.gz"
|
|
sha256sums="caa24d5025785905357357d952dd75d3d728264f8361d1812f28cb9c9afc4cf6 sphinxcontrib-jsx-0.2.0.tar.gz"
|
|
sha512sums="e7be117cc2e42978c7d7381b313b04344998ef5ddee6831325a9bd75587860dcd13aa72080880b482fef33448980af21ad0e73d0bc5feaf36a6c294a7293aaa7 sphinxcontrib-jsx-0.2.0.tar.gz"
|