41 lines
1.2 KiB
Text
41 lines
1.2 KiB
Text
# Contributor: Patrycja Rosa <alpine@ptrcnull.me>
|
|
# Maintainer: Patrycja Rosa <alpine@ptrcnull.me>
|
|
pkgname=node-print
|
|
pkgver=3
|
|
pkgrel=0
|
|
pkgdesc="another terrible javascript engine wrapper"
|
|
url="https://git.ddd.rip/ptrcnull/ptrcports"
|
|
arch="noarch"
|
|
license="BSD-2-Clause"
|
|
depends="nodejs-current"
|
|
source="np index.js"
|
|
builddir="$srcdir"
|
|
|
|
_assert() {
|
|
[ "$1" == "$2" ] || { echo "'$1' != '$2'"; return 1; }
|
|
}
|
|
|
|
check() {
|
|
local out
|
|
out="$(echo test | node -r . -p "stdin().substring(2).replace('t', 'rc').replace('s', 'pt')")"
|
|
_assert "$out" "ptrc"
|
|
|
|
out="$(echo '{"test":"property"}' | node -r . -p "stdin().test")"
|
|
_assert "$out" "property"
|
|
|
|
out="$(echo '["item"]' | node -r . -p "stdin()[0]")"
|
|
_assert "$out" "item"
|
|
|
|
out="$(echo crtp | node -r . -p "stdin().lines()[0].reverse()")"
|
|
_assert "$out" "ptrc"
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 np "$pkgdir"/usr/bin/np
|
|
install -Dm644 index.js "$pkgdir"/usr/lib/node/ptrc/index.js
|
|
}
|
|
|
|
sha512sums="
|
|
b3dfdeb49637be33d2e2718c5abcf35a87dd55023918c99341273c3b38bd6685189d1f786451a742c47c5f3bc3b58555decb58e2a3a018c9b9ee92043f8fac03 np
|
|
7a1622dcfcdea192368329c962a25b42ca919895669f1e646e6958ef770c8c6a90cdeb88acea368fb40d5e956afff4baec0310dc06c78e6aa092947f9fc70fc7 index.js
|
|
"
|