added rodeo-builder

This commit is contained in:
Paul Fey 2025-07-26 16:34:55 +02:00
parent 65937d2299
commit 748266643a
3 changed files with 16 additions and 0 deletions

3
build-static.sh Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
CGO_ENABLED=0 go build -o $OUT_DIR/usr/bin/rodeo-pkg

3
build.sh Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
go build -o $OUT_DIR/usr/bin/rodeo-pkg

10
rodeo-builder.json Normal file
View file

@ -0,0 +1,10 @@
{
"name": "rodeo-pkg",
"description": "The package manager for rodeo",
"version": "0.1.2",
"build": "sh build.sh",
"build": "sh build-static.sh",
"dependencies": {
"build": { "commands": ["go"] }
}
}