2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-12-21 23:00:06 -07:00
repo/extra/e2fsprogs/build

44 lines
735 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh -e
export LDFLAGS="$LDFLAGS -static"
./configure \
2024-06-07 18:52:26 -06:00
CPPFLAGS="$CPPFLAGS -DHAVE_LSEEK64" \
2019-07-06 19:28:15 -06:00
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--enable-symlink-install \
--enable-libuuid \
--enable-libblkid \
2024-06-03 11:37:33 -06:00
--disable-fuse2fs \
2020-02-18 11:18:35 -07:00
--disable-nls \
2019-06-21 00:37:23 -06:00
--disable-uuidd \
--disable-fsck \
--disable-elf-shlibs
make
2021-07-05 16:22:57 -06:00
set -- \
2023-03-02 07:40:00 -07:00
DESTDIR="$1" \
2021-07-05 16:22:57 -06:00
MKDIR_P="mkdir -p" \
BLKID_MAN="" \
BLKID_PROG="" \
FINDFS_LINK="" \
FINDFS_MAN="" \
UMANPAGES="chattr.1 lsattr.1" \
UPROGS="chattr lsattr"
for p in \
debugfs \
e2fsck \
lib/e2p \
lib/et \
lib/ext2fs \
lib/ss \
misc \
resize \
scrub
do
make -C "$p" "$@" install
done