diff --git a/PKGBUILD b/PKGBUILD index 8610297..751c5f5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,4 +2,24 @@ pkgname=tiny pkgver=1.0 pkgrel=1 pkgdesc="tiny script runner" -arch=('x86_64') \ No newline at end of file +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 doesn’t + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} diff --git a/out/tiny.exe b/out/tiny.exe new file mode 100755 index 0000000..24dabeb Binary files /dev/null and b/out/tiny.exe differ diff --git a/out/tiny2k.exe b/out/tiny2k.exe new file mode 100755 index 0000000..ebf9c78 Binary files /dev/null and b/out/tiny2k.exe differ diff --git a/out/tiny32 b/out/tiny32 new file mode 100755 index 0000000..628a173 Binary files /dev/null and b/out/tiny32 differ diff --git a/out/tiny9x.exe b/out/tiny9x.exe new file mode 100755 index 0000000..453f888 Binary files /dev/null and b/out/tiny9x.exe differ diff --git a/out/tinyxp64.exe b/out/tinyxp64.exe new file mode 100755 index 0000000..601ed4b Binary files /dev/null and b/out/tinyxp64.exe differ