summaryrefslogtreecommitdiff
path: root/test/librechroot.d/PKGBUILD-libretools
blob: dcc0f612d255bfde0defdc436bc498f81ba70aa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pkgname='libretools-hello'
pkgver=1.0
license=('GPL')
url='https://parabola.nu'

pkgrel=1
arch=(any)
depends=(libretools)

build() {
	cd "$srcdir"
	echo '#!/bin/sh' > hello.sh
	echo 'echo Hello, world!' >> hello.sh
	echo 'lsof' >> hello.sh
}

package() {
	cd "$srcdir"
	install -Dm755 hello.sh "$pkgdir"/usr/bin/libretools-hello
}