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

23 lines
526 B
Plaintext
Raw Normal View History

#!/bin/sh -e
export CFLAGS="$CFLAGS -static"
./configure \
--enable-symlink-install \
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
# Make static libraries writable (for strip).
chmod -v u+w "$1/usr/lib/libcom_err.a" \
"$1/usr/lib/libe2p.a" \
"$1/usr/lib/libext2fs.a" \
"$1/usr/lib/libss.a"
# Remove all info files.
rm -rf "$1/usr/share/info"