pkgname='libretools-testpkg2'
pkgver=1.0
license=('GPL')
url='https://parabola.nu'

pkgrel=1
arch=(any)
depends=(sh libretools-testpkg1)

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

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