mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 04:00:14 -07:00
24 lines
499 B
Bash
Executable File
24 lines
499 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--sysconfdir=/etc \
|
|
--enable-symlink-install \
|
|
--disable-uuidd \
|
|
--disable-libuuid \
|
|
--disable-libblkid \
|
|
--disable-elf-shlibs \
|
|
--disable-fsck \
|
|
--disable-nls
|
|
|
|
# MKDIR_P fixes an install issue on musl/busybox.
|
|
make
|
|
make MKDIR_P="install -d" DESTDIR="$1" install install-libs
|
|
|
|
# Make static libraries writable.
|
|
chmod -v u+w "$1/usr/lib/"*.a
|
|
|
|
# Remove all info files.
|
|
rm -rf "$1/usr/share/info"
|