mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-22 15:20:06 -07:00
23 lines
484 B
Plaintext
23 lines
484 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--enable-symlink-install \
|
||
|
--disable-fsck \
|
||
|
--disable-uuidd \
|
||
|
--disable-libuuid \
|
||
|
--disable-libblkid \
|
||
|
--disable-nls
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
make DESTDIR="$1" install-libs
|
||
|
|
||
|
# Make static libraries writable (for strip).
|
||
|
chmod -v u+w "$1/usr/lib/libcom_err.a" \
|
||
|
"$1/usr/lib/libe2p.a" \
|
||
|
"$1/usr/lib/libext2fs.a" \
|
||
|
"$1/usr/lib/libss.a"
|
||
|
|
||
|
# Remove all info files.
|
||
|
rm -rf "$1/usr/share/info"
|