Add new dependency test package: hello-world-wrapper
This commit is contained in:
parent
fbf4ff7c59
commit
4e4c1abe8a
2 changed files with 30 additions and 0 deletions
25
hello-world-wrapper/APKBUILD
Normal file
25
hello-world-wrapper/APKBUILD
Normal file
|
@ -0,0 +1,25 @@
|
|||
pkgname=hello-world-wrapper
|
||||
pkgver=1
|
||||
pkgrel=1
|
||||
pkgdesc="Dependency test package wrapping hello-world"
|
||||
url="https://github.org/postmarketOS"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends="hello-world"
|
||||
makedepends="hello-world"
|
||||
subpackages=""
|
||||
source="hello-world-wrapper.sh"
|
||||
options=""
|
||||
|
||||
check() {
|
||||
cd "$srcdir"
|
||||
printf 'hello, world!\n' > expected
|
||||
sh "$srcdir"/hello-world-wrapper.sh > real
|
||||
diff -q expected real
|
||||
}
|
||||
|
||||
package() {
|
||||
install -D -m755 "$srcdir"/hello-world-wrapper.sh \
|
||||
"$pkgdir"/usr/bin/hello-world-wrapper || return 1
|
||||
}
|
||||
sha512sums="a5c25ab16c0d98749b9cce8f347b115b44522c1d791e0ffcd248c65d25343936a542ea6b8af81a3d2e4f17e7ab9403ec44b5af679129bf0ed880dd4c5bcf7139 hello-world-wrapper.sh"
|
5
hello-world-wrapper/hello-world-wrapper.sh
Normal file
5
hello-world-wrapper/hello-world-wrapper.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
# This better be installed!
|
||||
hello-world
|
Loading…
Reference in a new issue