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