ports: Add tinygb port

This is awesome!
This commit is contained in:
2025-04-23 13:13:08 +03:00
parent 53e9eab0cd
commit 95a80bfe81
2 changed files with 439 additions and 0 deletions

17
ports/tinygb/build.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash ../install.sh
NAME='tinygb'
VERSION='git'
DOWNLOAD_URL="https://github.com/jewelcodes/tinygb.git#57fdaff675a6b5b963b2b6624868d9698eabe375"
configure() {
:
}
build() {
make -f Makefile.banan_os -j$(nproc) || exit 1
}
install() {
cp -v tinygb "$BANAN_SYSROOT"/usr/bin || exit 1
}