helloworld/PKGBUILD
Sebastiaan de Schaetzen 7e5b10e01e
All checks were successful
Wake Runner / build (push) Successful in 4s
Build and Push / build (push) Successful in 8s
Bump pkgrel
2025-04-23 12:31:19 +02:00

20 lines
365 B
Bash

pkgname=helloworld
pkgver=1
pkgrel=2
pkgdesc="Prints hello world"
arch=('any')
url="https://gitea.seeseepuff.be/archlinux/helloworld"
license=('GPL')
source=(helloworld.c)
md5sums=('be272e4d8286b99885f0540bc3345d5f')
build() {
gcc -o helloworld helloworld.c -Wall -Wextra -Werror -pedantic
}
package() {
install -D helloworld "$pkgdir/usr/bin/helloworld"
}