mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-23 07:40:11 -07:00
16 lines
287 B
Bash
Executable File
16 lines
287 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < silence-dlerror.patch
|
|
patch -p0 < fakeroot-no64.patch
|
|
patch -p0 < fakeroot-stdint.patch
|
|
|
|
export CONFIG_SHELL=/bin/sh
|
|
export CFLAGS="-D_STAT_VER=0 $CFLAGS"
|
|
|
|
ac_cv_func_capset=no \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
|
|
make DESTDIR="$1" install
|