mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
21991b24a2
Upstream sometimes don't create release tarballs. This makes it impossible to keep up-to-date without perl and autotools installed. With this release, the package will use meson instead.
14 lines
181 B
Bash
Executable File
14 lines
181 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
# Fix build fail with GCC 10.
|
|
export CFLAGS="$CFLAGS -fcommon"
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
. output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|