2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-08-22 22:16:19 +00:00
repo/core/util-linux/build

24 lines
466 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 \
--disable-nls \
--enable-libuuid \
--enable-libblkid \
--enable-fsck \
--disable-makeinstall-chown \
--disable-rpath \
--without-udev \
--without-python \
--without-systemd
make
make DESTDIR="$1" install
2019-07-19 13:48:32 +00:00
# Remove 'getopt' as it is provided by 'busybox'.
rm -f "$1/usr/bin/getopt"