test
This commit is contained in:
parent
f8edb95498
commit
a8f33e3620
6 changed files with 21 additions and 1 deletions
20
PKGBUILD
20
PKGBUILD
|
|
@ -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 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