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

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

build() {
	cd "$srcdir"
	echo '#!/bin/sh' > testpkg1.sh
	echo 'echo testpkg1' >> testpkg1.sh
}

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