forked from kiss-community/repo
12 lines
163 B
Plaintext
12 lines
163 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--with-threads \
|
||
|
--with-history \
|
||
|
--without-python \
|
||
|
--without-icu
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|