mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-17 18:31:28 +02:00
41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=py-sphinx-autobuild
|
|
pkgver=0.6.0
|
|
pkgrel=0
|
|
pkgdesc="Watch a Sphinx directory and rebuild the documentation when a change is detected"
|
|
url="https://github.com/GaretJax/sphinx-autobuild"
|
|
arch="noarch"
|
|
license="BSD"
|
|
depends="py-argh py-livereload py-pathtools py-yaml py-sphinx py-tornado py-watchdog py-setuptools"
|
|
depends_dev=""
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages=""
|
|
source="sphinx-autobuild-$pkgver.tar.gz::https://github.com/GaretJax/sphinx-autobuild/archive/v$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/sphinx-autobuild-$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="afa9cf28690436923921d8a2556ccbe8 sphinx-autobuild-0.6.0.tar.gz"
|
|
sha256sums="5d9e7032c8c8e3f744fd62b1f707a4cecf4c4bd2c3a0e10fdf611183c2e0936b sphinx-autobuild-0.6.0.tar.gz"
|
|
sha512sums="a99d6716a661e5ddb106de2f58dc913ddb15731c1c607d869b19cf69b3fed706b68b02df6dfadfd5093bdaf43fdc38fbc78939c148c3dabcd704d5d52e614e39 sphinx-autobuild-0.6.0.tar.gz"
|