2021-05-09 02:10:08 -04:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-05-11 00:07:37 -04: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 02:10:08 -04:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
|
|
|
|
|
|
|
# Fix broken --sbindir.
|
|
|
|
mv -f "$1/usr/sbin/"* "$1/usr/bin"
|
|
|
|
rmdir "$1/usr/sbin"
|