mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 11:40:21 -07:00
19 lines
332 B
Bash
Executable File
19 lines
332 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-ipv6 \
|
|
--enable-unix-sockets \
|
|
--enable-hidden-symbols \
|
|
--without-libidn \
|
|
--without-libidn2 \
|
|
--disable-manual \
|
|
--disable-ldap \
|
|
--disable-ares \
|
|
--without-libidn \
|
|
--without-librtmp \
|
|
--with-pic
|
|
|
|
make
|
|
make DESTDIR="$1" install
|