#!/bin/sh # Not so much compiling, but fetching and installing, since it's a shell script... if [ "$(id -u)" -eq 0 ] ; then echo "Run as a regular user" exit 1 fi set -ex codedir="${CODEDIR:-$HOME/scm}" dpwdir="${codedir}/dpw" if ! [ -d "$dpwdir" ] ; then git clone https://git.riedstra.dev/mitch/dpw "$dpwdir" fi cd "$dpwdir" make PREFIX="$HOME/.local" install cd -