1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 03:35:38 +03:00
aports/testing/py3-pydot/APKBUILD
2019-10-27 09:18:10 +01:00

30 lines
921 B
Text

# Contributor: Russ Webber <russ@rw.id.au>
# Maintainer: Russ Webber <russ@rw.id.au>
pkgname="py3-pydot"
_pkgname="pydot"
pkgver="1.4.1"
pkgrel=0
pkgdesc="Python interface to Graphviz's Dot language"
url="https://github.com/pydot/pydot"
arch="noarch"
license="MIT"
options="!check" # graphviz unable to parse jpe files
depends="python3 py3-parsing"
makedepends="py3-setuptools" # required for test: py3-chardet graphviz
source="$_pkgname-$pkgver.tar.gz::https://github.com/$_pkgname/$_pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"
build() {
python3 setup.py build
}
check() {
cd "$builddir/test"
PYTHONPATH="$builddir/build/lib" python3 pydot_unittest.py
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="b5f16b59908586df61cd415cb1a3e242fb69c39674a82b171862beff1f3727f47cba39bdd806901cb56bc8a6888783a53d112b1b70044e124ea992789d77f938 pydot-1.4.1.tar.gz"