blob: 55d489706ef1301ea1be4e3754e7d4c8f0af9972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh -e
autoreconf -if
export MAKEINFO=true
./configure \
--prefix=/usr \
--disable-webkit \
--disable-rpath \
--disable-shared
make
make DESTDIR="$1" install
|