mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
13 lines
202 B
Bash
Executable File
13 lines
202 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
sed -i'' -e 's/ -ltinfo//g' configure
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-threadsafe \
|
|
--enable-dynamic-extensions \
|
|
--enable-fts5
|
|
|
|
make -j 1
|
|
make DESTDIR="$1" install
|