mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-19 21:20:07 -07:00
14 lines
192 B
Plaintext
14 lines
192 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
# Remove all info files.
|
||
|
rm -rf "$1/usr/share/info"
|
||
|
|
||
|
# Remove conflicting file.
|
||
|
rm -f "$1/usr/lib/charset.alias"
|