From eb90d50f973f8f6f1f66ba67a3d74b1510bebda6 Mon Sep 17 00:00:00 2001 From: kin fuyuki Date: Tue, 17 Jun 2025 22:14:17 -0300 Subject: [PATCH] finished PKGBUILD --- PKGBUILD | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 81f5227..106bd1a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,6 +3,16 @@ pkgver=1.0 pkgrel=1 pkgdesc="tiny script runner" arch=('x86_64') -url="https://example.com" -license=('AGPLv3') -a \ No newline at end of file +url="https://crystalsoft.neocities.org" +license=('AGPL3') +makedepends=('gcc') +source=("https://github.com/J-K-Tech/${pkgname}/archive/refs/tags/${pkgver}.tar.gz") +sha256sums=('SKIP') + +build() { + g++ -O3 term.cpp main.cpp -o tiny +} + +package() { + install -Dm755 tiny "$pkgdir/tiny" +} \ No newline at end of file