From 06fd4a903b11d06c66c51207883b0b8f1d4f2fb7 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Sun, 26 Sep 2021 10:48:02 -0400 Subject: Add muslbuild, a small set of shell scripts to statically build a few things against musl libc --- muslbuild/all | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 muslbuild/all (limited to 'muslbuild/all') diff --git a/muslbuild/all b/muslbuild/all new file mode 100755 index 0000000..fdcf41d --- /dev/null +++ b/muslbuild/all @@ -0,0 +1,11 @@ +#!/bin/sh +set -e +pkgs="musl +oksh +ncurses +libevent +tmux +upx" +for pkg in $pkgs ; do + ./$pkg +done -- cgit v1.2.3