summarylogtreecommitdiffstats
path: root/arch-meson
diff options
context:
space:
mode:
authorSolomon Choina2018-02-11 13:25:36 -0500
committerSolomon Choina2018-02-11 13:25:36 -0500
commit3286e79dbd2206ad09e0ad16759418e5734335a5 (patch)
treec888589c56ab3b833c45adf03e419fd2f909ae7f /arch-meson
parentb0192f288bdf8a1979d28a1e4c0558035393dfba (diff)
downloadaur-3286e79dbd2206ad09e0ad16759418e5734335a5.tar.gz
updating pkgver
Diffstat (limited to 'arch-meson')
-rw-r--r--arch-meson21
1 files changed, 21 insertions, 0 deletions
diff --git a/arch-meson b/arch-meson
new file mode 100644
index 000000000000..c4a9e7cced70
--- /dev/null
+++ b/arch-meson
@@ -0,0 +1,21 @@
+#!/bin/bash -ex
+# Meson wrapper for Arch Linux packaging
+
+exec meson setup \
+ --prefix /usr \
+ --libdir /usr/lib \
+ --libexecdir /usr/lib \
+ --bindir /usr/bin \
+ --sbindir /usr/bin \
+ --includedir /usr/include \
+ --datadir /usr/share \
+ --mandir /usr/share/man \
+ --infodir /usr/share/info \
+ --localedir /usr/share/locale \
+ --sysconfdir /etc \
+ --localstatedir /var \
+ --sharedstatedir /var/lib \
+ --buildtype release \
+ --wrap-mode nofallback \
+ "$@" \
+ -D b_lto=true