test
This commit is contained in:
parent
f8edb95498
commit
a8f33e3620
6 changed files with 21 additions and 1 deletions
22
PKGBUILD
22
PKGBUILD
|
|
@ -2,4 +2,24 @@ pkgname=tiny
|
||||||
pkgver=1.0
|
pkgver=1.0
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="tiny script runner"
|
pkgdesc="tiny script runner"
|
||||||
arch=('x86_64')
|
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"
|
||||||
|
}
|
||||||
|
|
|
||||||
BIN
out/tiny.exe
Executable file
BIN
out/tiny.exe
Executable file
Binary file not shown.
BIN
out/tiny2k.exe
Executable file
BIN
out/tiny2k.exe
Executable file
Binary file not shown.
BIN
out/tiny32
Executable file
BIN
out/tiny32
Executable file
Binary file not shown.
BIN
out/tiny9x.exe
Executable file
BIN
out/tiny9x.exe
Executable file
Binary file not shown.
BIN
out/tinyxp64.exe
Executable file
BIN
out/tinyxp64.exe
Executable file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue