mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-22 23:30:05 -07:00
13 lines
167 B
Bash
Executable File
13 lines
167 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
CFLAGS_FOR_BUILD=-fPIC \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-static
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove docs.
|
|
rm -rf "$1/usr/share/doc"
|