mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
10 lines
108 B
Plaintext
10 lines
108 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
export LDFLAGS="-Wl,-z,lazy"
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|