blob: b520046951bf1e0e5e7301028b699555e8c85d62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -eu
# Insert build commands in here. #
# If you're feeling particular paranoid, you can make it chroot here. #
./configure
make -j4
make DESTDIR=app install
exit 0
|