kiss-mfavila-large/ports/util-linux/build

21 lines
474 B
Plaintext
Raw Normal View History

2021-05-09 06:10:08 +00:00
#!/bin/sh -e
2021-05-11 04:07:37 +00:00
./configure \
--prefix=/usr \
--localstatedir=/var \
--enable-libuuid \
--enable-libblkid \
--disable-makeinstall-chown \
--disable-rpath \
--without-udev \
--without-python \
--without-systemd \
--disable-more
2021-05-09 06:10:08 +00:00
make
make DESTDIR="$1" install
# Fix broken --sbindir.
mv -f "$1/usr/sbin/"* "$1/usr/bin"
rmdir "$1/usr/sbin"