First version!
This commit is contained in:
commit
fa35db191d
2 changed files with 18 additions and 0 deletions
15
PKGBUILD
Normal file
15
PKGBUILD
Normal 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
Normal file
3
hello_world
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
echo "Hello, world!"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue