Initial ports: hello

This commit is contained in:
2026-03-31 19:28:16 +00:00
commit 00c59d523d
6 changed files with 163 additions and 0 deletions

17
hello/Pkgfile Normal file
View File

@@ -0,0 +1,17 @@
# Description: GNU Hello - greeting program
# URL: https://www.gnu.org/software/hello/
# Maintainer: Your Name, you@example.com
# Depends on:
name=hello
version=2.12.1
release=1
source=(https://ftp.gnu.org/gnu/hello/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/info
}