Add new dependency test package: hello-world-wrapper

This commit is contained in:
Oliver Smith 2017-07-12 22:19:01 +02:00
parent f37367c57c
commit 4616484cb7
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
2 changed files with 30 additions and 0 deletions

View 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"

View File

@ -0,0 +1,5 @@
#!/bin/sh
set -e
# This better be installed!
hello-world