mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-25 16:50:07 -07:00
21 lines
389 B
Plaintext
21 lines
389 B
Plaintext
|
#!/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
|