mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
12 lines
200 B
Plaintext
12 lines
200 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-static \
|
||
|
--enable-shared \
|
||
|
ac_cv_func_malloc_0_nonnull=yes \
|
||
|
ac_cv_func_realloc_0_nonnull=yes
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|