blob: 4509c814e77a348be92b1c6a952899d0b078cb56 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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 -
|