2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/core/e2fsprogs/build

21 lines
434 B
Plaintext
Raw Normal View History

#!/bin/sh -e
./configure \
2019-07-07 01:28:15 +00:00
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--enable-symlink-install \
2019-06-21 06:37:23 +00:00
--disable-uuidd \
2019-07-07 01:28:15 +00:00
--disable-libuuid \
--disable-libblkid \
2019-06-21 06:26:07 +00:00
--disable-elf-shlibs \
--disable-fsck \
--disable-nls
2019-06-21 06:26:07 +00:00
# MKDIR_P fixes an install issue on musl/busybox.
make
2019-06-21 06:26:07 +00:00
make MKDIR_P="install -d" DESTDIR="$1" install install-libs
# Remove all info files.
rm -rf "$1/usr/share/info"