# Maintainer: Mike Swanson # Contributor: Buce # Contributor: Duncan Bain # Contributor: Maxwell Pray a.k.a. Synthead _pkgname=Minecraft-Overviewer pkgname=(${_pkgname,,}{,-docs}-git) pkgver=0.14.0.r3.4b84780 pkgrel=1 pkgdesc="Render large resolution images of a Minecraft map with a Google Maps powered interface" arch=('x86_64' 'i686') url="https://github.com/overviewer/${_pkgname}" license=('GPL3') depends=('python' 'python-pillow' 'python-numpy') makedepends=('git' 'python-sphinx') conflicts=('minecraft-overviewer') provides=('minecraft-overviewer') source=("git+https://github.com/overviewer/${_pkgname}.git") sha256sums=('SKIP') pkgver() { cd "${_pkgname}" local version="$(git describe --long --tags | sed 's/\([^-]*-\)g/r\1/;s/-/./g')" printf "%s" "${version#v}" } build() { cd "${_pkgname}" python "setup.py" build cd ./docs make html } package_minecraft-overviewer-git() { cd "${_pkgname}" python "setup.py" install --prefix=/usr --root="$pkgdir" } package_minecraft-overviewer-docs-git() { arch=('any') depends=() cd "${_pkgname}/docs/_build/html" install -d "$pkgdir/usr/share/doc/${_pkgname,,}/html" cp -r -t "$pkgdir/usr/share/doc/${_pkgname,,}/html" -- * }