First version!

main
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 100644
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"
}

3
hello_world 100644
View File

@ -0,0 +1,3 @@
#!/usr/bin/env sh
echo "Hello, world!"