From d1ba32888b402f3841847541ded9cc4349ae2f66 Mon Sep 17 00:00:00 2001 From: Chuck Date: Thu, 5 Sep 2019 15:08:00 -0700 Subject: Example build script for read-only XMOBAR_CONFIG_DIR --- examples/build | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 examples/build (limited to 'examples') diff --git a/examples/build b/examples/build new file mode 100644 index 0000000..9e9eb72 --- /dev/null +++ b/examples/build @@ -0,0 +1,17 @@ +#!/usr/bin/bash + +# An example build script that directs ghc to use a temporary directory for its +# intermediate files instead of writing them into XMOBAR_CONFIG_DIR. This +# allows using a read-only XMOBAR_CONFIG_DIR. To use this script, place it in +# XMOBAR_CONFIG_DIR and call it "build". + +bin=$1 +object_dir=$(mktemp -d) + +default_build_args=(--make xmobar.hs -i -ilib -fforce-recomp -main-is main -v0 -o "$bin" -threaded -rtsopts -with-rtsopts -V0) # From src/Xmobar/App/Compile.hs +extra_build_args=(-odir "$object_dir" -hidir "$object_dir") + +ghc "${default_build_args[@]}" "${extra_build_args[@]}" +status=$? +rm -r "$object_dir" +exit $status -- cgit v1.2.3