2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00
repo/extra/util-linux/build
2024-03-30 12:31:57 -05:00

33 lines
605 B
Bash
Executable File

#!/bin/sh -e
patch -p1 < posix.patch
./configure \
--prefix=/usr \
--localstatedir=/var \
--bindir=/usr/bin \
--sbindir=/usr/bin \
--libdir=/usr/lib \
--enable-libuuid \
--enable-libblkid \
--enable-fsck \
--enable-chfn-chsh \
--disable-chfn-chsh-password \
--disable-makeinstall-chown \
--disable-rpath \
--without-udev \
--without-python \
--without-systemd
make
make DESTDIR="$1" install
# 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"