diff options
author | Olliver Schinagl <oliver@schinagl.nl> | 2019-06-04 14:56:11 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-03 20:06:20 +0000 |
commit | 33c83889868b03cd49c516c6825f689caec62735 (patch) | |
tree | df34f3c33cda4908c957e55b1f1424d747ef5d97 /testing/shunit2 | |
parent | 85ac2b305e06778ed2b163c840926c54428df5fd (diff) | |
download | aports-33c83889868b03cd49c516c6825f689caec62735.tar.bz2 aports-33c83889868b03cd49c516c6825f689caec62735.tar.xz |
testing/shunit2: New aport
https://github.com/kward/shunit2
shUnit2 is a xUnit based unit test framework for Bourne based shell scripts.
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
Closes !277
Diffstat (limited to 'testing/shunit2')
-rw-r--r-- | testing/shunit2/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/shunit2/APKBUILD b/testing/shunit2/APKBUILD new file mode 100644 index 0000000000..7ca3e8d304 --- /dev/null +++ b/testing/shunit2/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Olliver Schinagl <oliver@schinagl.nl> +# Maintainer: Olliver Schinagl <oliver@schinagl.nl> +pkgname="shunit2" +pkgver="2.1.7" +pkgrel=0 +pkgdesc="A xUnit based unit test framework for Bourne based shell scripts." +url="https://github.com/kward/shunit2/" +arch="noarch" +license="Apache-2.0" +makedepends="bash dash loksh zsh" +subpackages="${pkgname}-doc" +source="${pkgname}-${pkgver}.tar.gz::https://github.com/kward/shunit2/archive/v${pkgver}.tar.gz" + +check() { + _tmpdir="${TMPDIR:-/tmp/}" + TMPDIR="$(mktemp -d -p "${_tmpdir}" shunit2.XXXXXXXX)" ./gen_test_report.sh + rm -rf "${_tmpdir}/shunit2.*" +} + +package() { + install -D -m 644 -t "${pkgdir}/usr/bin/" \ + "shunit2" + install -D -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}/" \ + "README.md" +} + +sha512sums="35453cf2c469eb1bab2fff0624b8037a09d405c377fec0938875a6339749d5934fe246eec5691a121290ae9e4ee5cbf7768b740c5f0010a5345c4e111c50fbbd shunit2-2.1.7.tar.gz" |