mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-24 16:30:04 -07:00
18 lines
319 B
Bash
Executable File
18 lines
319 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-included-gettext \
|
|
--without-examples \
|
|
--disable-java \
|
|
--disable-native-java \
|
|
--disable-csharp \
|
|
--disable-libasprintf \
|
|
--disable-acl \
|
|
--without-git \
|
|
--disable-openmp \
|
|
--disable-curses
|
|
|
|
make
|
|
make DESTDIR="$1" install
|