repo/extra/util-linux/build

31 lines
580 B
Plaintext
Raw Normal View History

2019-07-06 11:05:49 -06:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--localstatedir=/var \
--bindir=/usr/bin \
--sbindir=/usr/bin \
--libdir=/usr/lib \
--enable-libuuid \
--enable-libblkid \
--enable-fsck \
2022-10-20 02:59:50 -06:00
--enable-chfn-chsh \
--disable-chfn-chsh-password \
2019-07-06 11:05:49 -06:00
--disable-makeinstall-chown \
--disable-rpath \
--without-udev \
--without-python \
--without-systemd
make
2023-03-02 07:40:00 -07:00
make DESTDIR="$1" install
2020-02-10 13:50:44 -07:00
# Fix broken --sbindir.
mv -f "$1/usr/sbin/"* "$1/usr/bin"
rmdir "$1/usr/sbin"
rm -rf \
"$1/usr/share/doc" \
"$1/usr/share/bash-completion"