Initial commit

This repository was based on https://gitea.seeseepuff.be/archlinux/helloworld
This commit is contained in:
2025-04-23 10:56:16 +02:00
commit c7795b5098
3 changed files with 58 additions and 0 deletions

19
PKGBUILD Normal file
View File

@@ -0,0 +1,19 @@
pkgname=template
pkgver=1
pkgrel=1
pkgdesc="Template"
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"
}