mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
27 lines
654 B
Bash
Executable File
27 lines
654 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export LDFLAGS="$LDFLAGS -static"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--sysconfdir=/etc \
|
|
--enable-symlink-install \
|
|
--enable-libuuid \
|
|
--enable-libblkid \
|
|
--disable-uuidd \
|
|
--disable-fsck \
|
|
--disable-elf-shlibs
|
|
|
|
# MKDIR_P fixes an install issue on musl/busybox.
|
|
make
|
|
make MKDIR_P="install -d" DESTDIR="$1" install-progs-recursive
|
|
|
|
# Remove utilities which conflict with util-linux.
|
|
rm -f "$1/usr/bin/blkid" \
|
|
"$1/usr/bin/uuidgen" \
|
|
"$1/usr/bin/findfs" \
|
|
"$1/usr/share/man/man8/findfs.8" \
|
|
"$1/usr/share/man/man8/blkid.8" \
|
|
"$1/usr/share/man/man1/uuidgen.1"
|