mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-23 07:40:11 -07:00
14 lines
208 B
Bash
Executable File
14 lines
208 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
CFLAGS_FOR_BUILD=-fPIC \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-static
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove unneeded files.
|
|
rm -rf "$1/usr/share/doc"
|
|
rm -rf "$1/usr/share/man/man3"
|