aboutsummaryrefslogtreecommitdiff
path: root/muslbuild/all
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2021-09-26 10:48:02 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2021-09-26 10:48:02 -0400
commit06fd4a903b11d06c66c51207883b0b8f1d4f2fb7 (patch)
tree1d20efad6386edf655b4afaa3d98cdc2ef451092 /muslbuild/all
parent03976ecac8e5b062936f692f45768da512d89421 (diff)
downloaddotfiles-06fd4a903b11d06c66c51207883b0b8f1d4f2fb7.tar.gz
dotfiles-06fd4a903b11d06c66c51207883b0b8f1d4f2fb7.tar.xz
Add muslbuild, a small set of shell scripts to statically build a few things against musl libc
Diffstat (limited to 'muslbuild/all')
-rwxr-xr-xmuslbuild/all11
1 files changed, 11 insertions, 0 deletions
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