Makefile and pkgbuild

This commit is contained in:
synt-xerror
2026-01-25 00:50:16 -03:00
parent 44a58c389b
commit d0a1f1f5b9
3 changed files with 312 additions and 0 deletions

20
PKGBUILD Normal file
View File

@@ -0,0 +1,20 @@
pkgname=reddust
pkgver=2.0
pkgrel=1
pkgdesc="Minimalist programming language."
arch=('x86_64')
url="https://github.com/synt-xerror/reddust"
license=('GPL-3.0')
depends=()
makedepends=('gcc')
source=("reddust.c")
sha256sums=('SKIP')
build() {
make
}
package() {
make DESTDIR="$pkgdir" install
}