forked from kiss-community/repo
21 lines
309 B
Bash
Executable File
21 lines
309 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export DESTDIR="$1"
|
|
|
|
patch -p1 < asv.patch
|
|
|
|
meson setup \
|
|
-Dprefix=/usr \
|
|
-Dbuildtype=release \
|
|
-Dime=false \
|
|
output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|
|
|
|
rm -rf \
|
|
"$1/usr/share/doc" \
|
|
"$1/usr/share/zsh" \
|
|
"$1/usr/share/fish" \
|
|
"$1/usr/share/bash-completion"
|