mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
18 lines
286 B
Bash
Executable File
18 lines
286 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < fix-gcc9-dp.h.patch
|
|
patch -p1 < fix-gcc9.patch
|
|
|
|
# Avoid repeating ourselves.
|
|
mk() {
|
|
make \
|
|
libdir=/usr/lib/ \
|
|
bindir=/usr/bin/ \
|
|
mandir=/usr/share/man/ \
|
|
includedir=/usr/include/ \
|
|
"$@"
|
|
}
|
|
|
|
mk
|
|
mk DESTDIR="$1" install
|