forked from kiss-community/repo
13 lines
165 B
Bash
Executable File
13 lines
165 B
Bash
Executable File
#!/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"
|