forked from kiss-community/repo
13 lines
165 B
Plaintext
13 lines
165 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
meson \
|
||
|
--prefix=/usr \
|
||
|
. output
|
||
|
|
||
|
ninja -C output
|
||
|
ninja -C output install
|
||
|
|
||
|
# $1 is never unset
|
||
|
# shellcheck disable=2115
|
||
|
rm -rf "$1/usr/share"
|