diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-26 17:38:30 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-26 17:38:30 +0000 |
commit | cba6873907ca1b7062b95baac57f1d3182061e3f (patch) | |
tree | 848e652a5aea2d8a1261dc4ad8ebdeb71f5413c6 /community/atools | |
parent | 6352558d89f5f385e31e4057b9a3cda363249c12 (diff) | |
download | aports-cba6873907ca1b7062b95baac57f1d3182061e3f.tar.bz2 aports-cba6873907ca1b7062b95baac57f1d3182061e3f.tar.xz |
community/atools: move from testing
Diffstat (limited to 'community/atools')
-rw-r--r-- | community/atools/APKBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/atools/APKBUILD b/community/atools/APKBUILD new file mode 100644 index 0000000000..572f9999df --- /dev/null +++ b/community/atools/APKBUILD @@ -0,0 +1,28 @@ +# Contributor: Kevin Daudt <kdaudt@alpinelinux.org> +# Maintainer: Kevin Daudt <kdaudt@alpinelinux.org> +pkgname=atools +pkgver=10 +pkgrel=0 +pkgdesc="Auxilary scripts for abuild" +url="https://github.com/maxice8/atools" +arch="noarch" +license="MIT" +depends="grep" +makedepends="scdoc redo" +checkdepends="bats" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/maxice8/atools/archive/$pkgver.tar.gz" + +build() { + redo build +} + +check() { + redo check +} + +package() { + DESTDIR="$pkgdir" redo install +} + +sha512sums="b7fc880b9885f5e1cc401af9fb2de6590314a530fdab51dce711e16cb5616a9200e8b631d8dbf7c5bdd1819918ac974a3ba29090988a75bb8f4c1baded5a9d47 atools-10.tar.gz" |