aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2020-02-23 17:13:16 +0100
committerJakub Jirutka <jakub@jirutka.cz>2020-02-23 17:13:44 +0100
commitecb2c46b0ab8662bf1be35a111efe83b6ed12c31 (patch)
treec623ff13597bd2bc80349d16071b1acff785a7f2 /testing
parent526d8c1082620c11e10013b48cda0e995fff78cd (diff)
downloadaports-ecb2c46b0ab8662bf1be35a111efe83b6ed12c31.tar.bz2
aports-ecb2c46b0ab8662bf1be35a111efe83b6ed12c31.tar.xz
community/oq: move from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/oq/APKBUILD28
1 files changed, 0 insertions, 28 deletions
diff --git a/testing/oq/APKBUILD b/testing/oq/APKBUILD
deleted file mode 100644
index deec12b117..0000000000
--- a/testing/oq/APKBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# Contributor: Jakub Jirutka <jakub@jirutka.cz>
-# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
-pkgname=oq
-pkgver=1.0.1
-pkgrel=0
-pkgdesc="A portable jq wrapper with support of other formats than JSON"
-url="https://github.com/blacksmoke16/oq"
-arch="x86_64 aarch64" # limited by Crystal
-license="MIT"
-depends="jq"
-makedepends="crystal libxml2-dev yaml-dev"
-source="https://github.com/Blacksmoke16/oq/archive/v$pkgver/$pkgname-$pkgver.tar.gz"
-builddir="$srcdir/$pkgname-$pkgver"
-
-build() {
- mkdir -p bin
- crystal build --release -o bin/oq src/oq_cli.cr
-}
-
-check() {
- crystal spec
-}
-
-package() {
- install -D -m 755 bin/oq "$pkgdir"/usr/bin/oq
-}
-
-sha512sums="499a0e44e03f34ec523e5b6d34d76c4ce03aac744de6b1429c6ae951e319b9cd9b8fa1fbeb5bfd993d24c33d5140ba2f99fd94fd5d6399de445f65db4d563838 oq-1.0.1.tar.gz"