2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-16 04:42:26 +00:00
repo/core/e2fsprogs/build

19 lines
385 B
Plaintext
Raw Normal View History

#!/bin/sh -e
./configure \
2019-07-07 01:28:15 +00:00
--prefix=/usr \
--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"