mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-04 14:05:50 -07:00
12 lines
151 B
Bash
Executable File
12 lines
151 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove all info files.
|
|
rm -rf "$1/usr/share/info"
|