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