First version!

This commit is contained in:
Jef Roosens 2021-12-31 13:35:32 +01:00
commit fa35db191d
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
2 changed files with 18 additions and 0 deletions

15
PKGBUILD Normal file
View file

@ -0,0 +1,15 @@
pkgname="jjr-test"
pkgver="0.1.0"
pkgrel="1"
pkgdesc="A package for testing the repo."
arch=("x86_64")
license=("custom")
source=("hello_world")
sha512sums=("SKIP")
package() {
mkdir -p "${pkgdir}/usr/bin"
cp "${srcdir}/hello_world" "${pkgdir}/usr/bin/hello_world"
chmod +x "${pkgdir}/usr/bin/hello_world"
}