From d513977a3566b14d9357906615d045d71741537f Mon Sep 17 00:00:00 2001 From: Thorsten Töpper Date: Wed, 18 Feb 2026 21:51:53 +0100 Subject: squash initial implementation --- build.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 build.sh (limited to 'build.sh') diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..e1c1208 --- /dev/null +++ b/build.sh @@ -0,0 +1,8 @@ +#!/bin/sh +# I'm a lazy guy +BDIR="/dev/shm/${PWD##*/}_cmakebuild/" +mkdir -p bin +cmake -S . -B "${BDIR}" && ( cd "${BDIR}" ; make) && \ + find "${BDIR}" -maxdepth 1 -perm /u=x,g=x,o=x -type f -exec cp "{}" bin/ \; && \ + cp -v "${BDIR}${PWD##*/}.1.gz" man/ + -- cgit v1.3