aports/testing/sqawk/APKBUILD
Celeste 4ccb904616 testing/sqawk: new aport
https://github.com/dbohdan/sqawk
AWK-like program with SQL and table joins
2024-05-24 16:07:50 +00:00

38 lines
993 B
Plaintext

# Contributor: Celeste <cielesti@protonmail.com>
# Maintainer: Celeste <cielesti@protonmail.com>
pkgname=sqawk
pkgver=0.24.0
pkgrel=0
pkgdesc="AWK-like program with SQL and table joins"
url="https://github.com/dbohdan/sqawk"
arch="noarch"
license="MIT"
depends="tcl tcl-lib sqlite-tcl"
checkdepends="jimtcl sqlite"
subpackages="$pkgname-doc"
source="https://github.com/dbohdan/sqawk/archive/refs/tags/v$pkgver/sqawk-$pkgver.tar.gz"
build() {
make
}
check() {
make test
}
package() {
make DESTDIR="$pkgdir" prefix=/usr install
install -Dvm644 README.md -t "$pkgdir"/usr/share/doc/$pkgname/
install -Dvm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
# examples/hp is mentioned in README.md
cd examples/hp
install -Dvm644 MD5SUMS du-bytes results.correct \
-t "$pkgdir"/usr/share/doc/$pkgname/examples/hp/
}
sha512sums="
fb84fdd0a7dad286006ebcb3862ee5198bb0e3fa8071866e72a3c12a4116167d3e6f9f0665eb2ddaf102c43a3e939aa57bfc3b2aa8eda27a48dab572fb88dac4 sqawk-0.24.0.tar.gz
"