diff --git a/testing/py3-dominate/APKBUILD b/testing/py3-dominate/APKBUILD new file mode 100644 index 00000000000..d28c5b4829d --- /dev/null +++ b/testing/py3-dominate/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: Leo +# Maintainer: Leo +pkgname=py3-dominate +pkgver=2.4.0 +pkgrel=0 +pkgdesc="Library for creating and manipulating HTML documents using an elegant DOM API" +options="!check" # Tests are broken +url="https://github.com/Knio/dominate/" +arch="noarch" +license="LGPL-3.0-only" +depends="python3" +makedepends="py3-setuptools" +source="$pkgname-$pkgver.tar.gz::https://github.com/Knio/dominate/archive/$pkgver.tar.gz" +builddir="$srcdir/dominate-$pkgver" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="93b721762175f14339d5b027af59d8475485b2674c019990bdc0989067448f4b74350d16b19c396ee2e514822930e821675f8bbab96e03be3e5899dd95a86ee4 py3-dominate-2.4.0.tar.gz"