mirror of
https://codeberg.org/kiss-community/repo
synced 2025-01-22 10:24:48 -07:00
13 lines
171 B
Bash
Executable File
13 lines
171 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
rm -f PATCHES
|
|
patch -p1 < cumulative.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--enable-thread-safe
|
|
|
|
make
|
|
make DESTDIR="$1" install
|