28 lines
580 B
Bash
Executable File
28 lines
580 B
Bash
Executable File
#!/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 \
|
|
--without-systemd \
|
|
--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
|
|
|
|
|
|
make
|
|
make DESTDIR="$1" install
|