c8e1c19f56
fixes https://github.com/i3/i3status/issues/459 fixes https://github.com/i3/i3status/issues/339 fixes https://github.com/i3/i3status/issues/353
20 lines
272 B
Bash
Executable File
20 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cd "${MESON_DIST_ROOT}"
|
|
|
|
# Delete everything we do not want to have in the release tarballs:
|
|
rm -rf \
|
|
.clang-format \
|
|
.editorconfig \
|
|
.travis.yml
|
|
|
|
mkdir build
|
|
cd build
|
|
meson .. -Dprefix=/usr -Dmans=true
|
|
ninja
|
|
cp *.1 ../man/
|
|
cd ..
|
|
rm -rf build
|