2021-07-09 16:28:46 -04:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/bin \
|
|
|
|
--libdir=/usr/lib \
|
|
|
|
--disable-makeinstall-chown \
|
|
|
|
--disable-rpath \
|
|
|
|
--without-udev \
|
|
|
|
--without-python \
|
2022-02-06 14:12:47 -05:00
|
|
|
--without-systemd \
|
2022-02-06 19:14:32 -05:00
|
|
|
--disable-all-programs \
|
|
|
|
--enable-static-programs=fdisk,mount,umount \
|
|
|
|
--enable-libuuid \
|
|
|
|
--enable-libblkid \
|
|
|
|
--enable-fsck \
|
|
|
|
--enable-uuidgen \
|
|
|
|
--enable-fstrim\
|
|
|
|
--enable-libmount \
|
|
|
|
--disable-bash-completion \
|
|
|
|
--disable-colors-default
|
|
|
|
|
2021-07-09 16:28:46 -04:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|