blob: f9a50502a1d8d41d63f8fd19cb7750cf0847f043 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | #!/bin/sh -e
onig=no
cpt l oniguruma >/dev/null 2>&1 && onig=yes
./configure \
    --prefix=/usr \
    --disable-maintainer-mode \
    --with-oniguruma="$onig" \
    --enable-all-static
make
make DESTDIR="$1" install
 |