14 lines
222 B
Plaintext
14 lines
222 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-nls \
|
||
|
--disable-metalink \
|
||
|
--disable-websocket \
|
||
|
--without-libxml2 \
|
||
|
--without-libexpat \
|
||
|
--without-sqlite3
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|