diff options
Diffstat (limited to 'testing/py3-dominate/APKBUILD')
-rw-r--r-- | testing/py3-dominate/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/py3-dominate/APKBUILD b/testing/py3-dominate/APKBUILD new file mode 100644 index 0000000000..d28c5b4829 --- /dev/null +++ b/testing/py3-dominate/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: Leo <thinkabit.ukim@gmail.com> +# Maintainer: Leo <thinkabit.ukim@gmail.com> +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" |