mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 04:00:14 -07:00
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
|