mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 19:50:13 -07:00
28 lines
621 B
Bash
Executable File
28 lines
621 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# During ./configure, disable kill and sulogin as they are provided
|
|
# by busybox.
|
|
./configure \
|
|
--prefix=/usr \
|
|
--localstatedir=/var \
|
|
--bindir=/usr/bin \
|
|
--sbindir=/usr/bin \
|
|
--libdir=/usr/lib \
|
|
--enable-libuuid \
|
|
--enable-libblkid \
|
|
--enable-fsck \
|
|
--disable-makeinstall-chown \
|
|
--disable-rpath \
|
|
--disable-kill \
|
|
--disable-sulogin \
|
|
--without-udev \
|
|
--without-python \
|
|
--without-systemd
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove getopt as it is provided by busybox. (For some reason
|
|
# ./configure does not support it)
|
|
rm -f "$1/usr/bin/getopt"
|