mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
30 lines
996 B
Text
30 lines
996 B
Text
# Contributor: Charles Wimmer <charles@wimmer.net>
|
|
# Maintainer: Charles Wimmer <charles@wimmer.net>
|
|
pkgname=junit2html
|
|
pkgver=0.1.0
|
|
pkgrel=1
|
|
pkgdesc="Simple self-contained python tool to produce a single html file from a single junit xml file"
|
|
url="https://gitlab.com/inorton/junit2html"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
builddir="$srcdir/$pkgname-v$pkgver"
|
|
source="$pkgname-$pkgver.tar.gz::https://gitlab.com/inorton/junit2html/-/archive/v$pkgver/junit2html-v$pkgver.tar.gz
|
|
setup.py.patch
|
|
"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="4603b78cc950656df73c89b211cee030783435afc771b53715d677c1a47d5cc0d280e2f2eadec2e6382dbad3d7b88ff9ea3ce4d5b5a0bf6d216d7485659952b2 junit2html-0.1.0.tar.gz
|
|
c3b5a80d3ff23cbf4391d4822ee841b216ec60bc9463d84b1c017a247295145ccdfa821a990dbf26c473e6055f7ef4b364f847628fb897a03d905d7ad0a7540b setup.py.patch"
|