proj/gagit:main commit in: /
MichaŠGórny <[email protected]> Tue, 04 Aug 2026 14:18:56 +0000 (UTC)
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1785853092.71f4483f78a944c12419bd31971ab23a4d5921f3.mgorny@gentoo> |
commit: 71f4483f78a944c12419bd31971ab23a4d5921f3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 4 14:18:12 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Aug 4 14:18:12 2026 +0000
URL: https://gitweb.gentoo.org/proj/gagit.git/commit/?id=71f4483f
Add a meson build system
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
meson.build | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..13eb423
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,10 @@
+project('gagit',
+ version: run_command(
+ 'sed', '-n', '-e', 's:^VERSION=::p', 'gagit',
+ check: true).stdout().strip(),
+ license: 'GPL-2.0-or-later',
+ meson_version: '>=0.60.3')
+
+install_data('gagit',
+ install_dir: get_option('bindir'),
+ install_mode: 'rwxr-xr-x')