This commit is contained in:
kin fuyuki 2025-06-17 21:50:19 -03:00
commit a8f33e3620
No known key found for this signature in database
GPG key ID: 0E4E8E519FB71401
6 changed files with 21 additions and 1 deletions

View file

@ -3,3 +3,23 @@ pkgver=1.0
pkgrel=1
pkgdesc="tiny script runner"
arch=('x86_64')
url="https://example.com"
license=('AGPLv3')
depends=('bash')
makedepends=('cmake' 'gcc')
source=("https://github.com/J-K-Tech/${pkgname}/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('SKIP') # Change to proper checksum later
build() {
cd "$srcdir/$pkgname-$pkgver"
cmake -DCMAKE_INSTALL_PREFIX=/usr .
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
# ✅ Install the license manually if upstream doesnt
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

BIN
out/tiny.exe Executable file

Binary file not shown.

BIN
out/tiny2k.exe Executable file

Binary file not shown.

BIN
out/tiny32 Executable file

Binary file not shown.

BIN
out/tiny9x.exe Executable file

Binary file not shown.

BIN
out/tinyxp64.exe Executable file

Binary file not shown.