2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-05 16:55:47 -06:00
repo/extra/e2fsprogs/build

42 lines
669 B
Plaintext
Raw Normal View History

#!/bin/sh -e
export LDFLAGS="$LDFLAGS -static"
./configure \
2019-07-06 19:28:15 -06:00
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--enable-symlink-install \
--enable-libuuid \
--enable-libblkid \
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