mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 12:10:12 -07:00
17 lines
276 B
Bash
Executable File
17 lines
276 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-targets=x86_64-pep \
|
|
--disable-multilib \
|
|
--disable-werror \
|
|
--disable-nls \
|
|
--with-mmap \
|
|
--with-system-zlib
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove all info files.
|
|
rm -rf "$1/usr/share/info"
|