repo/extra/util-linux/build

31 lines
580 B
Plaintext
Raw Normal View History

2019-07-06 17:05:49 +00: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 08:59:50 +00:00
--enable-chfn-chsh \
--disable-chfn-chsh-password \
2019-07-06 17:05:49 +00:00
--disable-makeinstall-chown \
--disable-rpath \
--without-udev \
--without-python \
--without-systemd
make
2023-03-02 14:40:00 +00:00
make DESTDIR="$1" install
2020-02-10 20:50:44 +00: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"