ptrcports/node-print/APKBUILD

38 lines
1.2 KiB
Text
Raw Normal View History

2022-08-27 11:01:43 +00:00
# Contributor: Patrycja Rosa <alpine@ptrcnull.me>
# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
pkgname=node-print
2023-12-05 22:59:22 +00:00
pkgver=15
2022-08-27 11:01:43 +00:00
pkgrel=0
pkgdesc="another terrible javascript engine wrapper"
url="https://git.ddd.rip/ptrcnull/ptrcports"
arch="noarch !armhf !armv7" # hangs on tests
2022-08-27 11:01:43 +00:00
license="BSD-2-Clause"
depends="nodejs-current"
source="
np
index.js
test.js
"
2022-08-27 11:01:43 +00:00
builddir="$srcdir"
check() {
node --experimental-test-coverage --test > output.txt
2023-05-15 15:32:14 +00:00
# ensure coverage
local cov_lines="$(grep -F index.js output.txt | cut -d' ' -f4 | cut -d. -f1)"
[ "$cov_lines" -gt 90 ]
2023-12-05 22:59:22 +00:00
local cov_branches="$(grep -F index.js output.txt | cut -d' ' -f6 | cut -d. -f1)"
[ "$cov_branches" -gt 90 ]
2022-08-27 11:01:43 +00:00
}
package() {
install -Dm755 np "$pkgdir"/usr/bin/np
install -Dm644 index.js "$pkgdir"/usr/lib/node/ptrc/index.js
}
sha512sums="
b3dfdeb49637be33d2e2718c5abcf35a87dd55023918c99341273c3b38bd6685189d1f786451a742c47c5f3bc3b58555decb58e2a3a018c9b9ee92043f8fac03 np
2023-12-21 21:57:25 +00:00
90801db95514a0f5d4d86e044b18a973ceae5852188c341da18b6c0f9941d0f09daad7eecadc35562e4dde35e9218cbd40201b2eb87e8a30b00befb73149f3a8 index.js
b5dad134c46a13e832eeccd83541bf75681e6e3dfefc47ad41836a5eb29419d8c2c3bc06ca3909beadf766f72d1277160cb9b01dd9fb2203654c75d8209c08d9 test.js
2022-08-27 11:01:43 +00:00
"