public
Description: A spreadsheet program for my own amusement.
Homepage: http://accesscom.com/~darius
Clone URL: git://github.com/darius/vicissicalc.git
vicissicalc / build
100755 19 lines (14 sloc) 0.469 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
 
# Build this project from Akefile using ake, first installing ake if
# necessary.
 
# You may want to configure CFLAGS yourself.
export CFLAGS='-lm -g2 -Wall -W'
 
# (Isn't there any Bash expression for "NOT -x ake"? I couldn't find any...)
if [ -x ake ]
then
echo -n # (An actual command seems syntactically required here)
else
    (curl 'http://github.com/darius/ake/tree/master%2Fake?raw=true' -o ake &&
     chmod +x ake) || exit 1
fi
 
./ake "$@"