aboutsummaryrefslogtreecommitdiff
path: root/extra/ubase/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-28 17:41:03 +0300
committerCem Keylan <cem@ckyln.com>2020-05-28 17:41:03 +0300
commitf243f9b393deb014f88a53d9048d31212a89bde7 (patch)
tree729e779398dd0d3755b84652b33631e9e227d77e /extra/ubase/build
parent01b36fdbc4ef59c5f5eac7cce79f532cabe72bd8 (diff)
downloadrepository-f243f9b393deb014f88a53d9048d31212a89bde7.tar.gz
ubase: move to extra
Diffstat (limited to 'extra/ubase/build')
-rwxr-xr-xextra/ubase/build14
1 files changed, 14 insertions, 0 deletions
diff --git a/extra/ubase/build b/extra/ubase/build
new file mode 100755
index 00000000..dc26aff0
--- /dev/null
+++ b/extra/ubase/build
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+
+make CFLAGS="$CFLAGS -static" ubase-box
+make DESTDIR="$1" PREFIX=/usr ubase-box-install
+
+# stat in ubase is not a good option at the time
+# being. It has almost none of the options stat
+# is used for.
+unlink "$1/usr/bin/stat"
+
+# You cannot execute commands with the ubase
+# implementation of su, which might break kiss
+# if the user doesn't have sudo or doas installed.
+unlink "$1/usr/bin/su"