Fixed muon

This commit is contained in:
Alexander Hill 2025-11-30 15:53:18 -05:00
parent e9623a7886
commit 07fe604fb4
2 changed files with 6 additions and 7 deletions

View File

@ -28,7 +28,7 @@ Definitions:
| `m4` | Yes | Yes | | `m4` | Yes | Yes |
| `make` | Yes | Yes | | `make` | Yes | Yes |
| `mold` | Yes | Yes | | `mold` | Yes | Yes |
| `muon` | Yes | No | | `muon` | Yes | Yes |
| `musl` | Yes | Yes | | `musl` | Yes | Yes |
| `musl-fts` | Yes | Yes | | `musl-fts` | Yes | Yes |
| `nano` | Yes | Yes | | `nano` | Yes | Yes |

View File

@ -3,17 +3,16 @@ SRC_FILENAME="muon-0.5.0.tar.gz"
SRC_HASH="565c1b6e1e58f7e90d8813fda0e2102df69fb493ddab4cf6a84ce3647466bee5" SRC_HASH="565c1b6e1e58f7e90d8813fda0e2102df69fb493ddab4cf6a84ce3647466bee5"
SRC_NAME="muon" SRC_NAME="muon"
SRC_URL="https://git.sr.ht/~lattis/muon/archive/0.5.0.tar.gz" SRC_URL="https://git.sr.ht/~lattis/muon/archive/0.5.0.tar.gz"
SRC_VERSION="0.5.0" SRC_VERSION="0.5.0r1"
# TODO: Make sure the muon command is installed to $TT_BINDIR ~ahill
build() { build() {
tar xf ../$SRC_FILENAME tar xf ../$SRC_FILENAME
cd muon-*/ cd muon-*/
./bootstrap.sh build # NOTE: bootstrap.sh attempts to call "c99", which isn't a command. We'll
./build/muon-bootstrap setup build # use CC here to define a suitable replacement. ~ahill
CC="clang -std=c99" ./bootstrap.sh build
./build/muon-bootstrap setup $TT_MESON_COMMON build
./build/muon-bootstrap -C build samu ./build/muon-bootstrap -C build samu
./build/muon -C build test -R
} }
clean() { clean() {