diff options
author | Krystian Chachuła <krystian@krystianch.com> | 2021-05-27 08:40:57 +0200 |
---|---|---|
committer | dispatch <dispatch@listserv.local> | 2021-05-27 06:41:13 +0000 |
commit | b6830d7e13c7324b5d98eaa0580004ffcd88badd (patch) | |
tree | a6961696f4cbc7a32fa6fa1414f384ff715d27e5 | |
parent | 5954a5fe7f4d0bc36b0dd8a4f6993a6730f057e1 (diff) | |
download | aports-patches/3531.tar.gz aports-patches/3531.tar.bz2 aports-patches/3531.tar.xz |
testing/vocage: new aportpatches/3531
https://github.com/proycon/vocage
Minimalistic terminal-based vocabulary-learning tool
-rw-r--r-- | testing/vocage/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/vocage/APKBUILD b/testing/vocage/APKBUILD new file mode 100644 index 0000000000..f9747a7dc7 --- /dev/null +++ b/testing/vocage/APKBUILD @@ -0,0 +1,23 @@ +# Maintainer: Krystian Chachuła <krystian@krystianch.com> +pkgname=vocage +pkgver=1.1.0 +pkgrel=0 +pkgdesc="Minimalistic terminal-based vocabulary-learning tool" +url="https://github.com/proycon/vocage" +arch="all !s390x" +license="GPL-3.0-or-later" +makedepends="rust cargo" +source="$pkgname-$pkgver.tar.gz::https://github.com/proycon/vocage/archive/refs/tags/v1.1.0.tar.gz" +options="!check" # No test suite / unit tests + +build() { + cargo build --release --locked +} + +package() { + install -D -m755 "target/release/vocage" "$pkgdir/usr/bin/vocage" +} + +sha512sums=" +c6cf955de66469c00e88b4dff1aa0a9686c3a1fe604e8c1f6fccd738de013c5490ed178f41a863b2a90419bb936a0a6e038a761dedf55b3e283d15a957373c31 vocage-1.1.0.tar.gz +" |