mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
sed -i 's|Liberation Mono|Monospace|g' config.def.h
|
|
|
|
# Install terminfo to right location.
|
|
export TERMINFO=$1/usr/share/terminfo
|
|
mkdir -p "$TERMINFO"
|
|
|
|
make
|
|
make PREFIX=/usr DESTDIR="$1" install
|