finished PKGBUILD

This commit is contained in:
kin fuyuki 2025-06-17 22:14:17 -03:00
commit eb90d50f97
No known key found for this signature in database
GPG key ID: 0E4E8E519FB71401

View file

@ -3,6 +3,16 @@ pkgver=1.0
pkgrel=1
pkgdesc="tiny script runner"
arch=('x86_64')
url="https://example.com"
license=('AGPLv3')
a
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"
}