From: Corentin Bocquillon <corentin@nibupac>
To: 26568@debbugs.gnu.org
Subject: bug#26568: [PATCH] gnu : Add meson.
Date: Wed, 19 Apr 2017 22:47:50 +0200 [thread overview]
Message-ID: <20170419204750.GA13306@nibupac> (raw)
[-- Attachment #1: 0001-gnu-packages-build-tools.scm-meson-Add-meson-package.patch --]
[-- Type: text/plain, Size: 2471 bytes --]
From f2429bf6badea06689c11b44d2b2281df57140d9 Mon Sep 17 00:00:00 2001
From: Corentin Bocquillon <corentin@nybble.fr>
Date: Wed, 19 Apr 2017 22:30:07 +0200
Subject: [PATCH] =?UTF-8?q?*=20gnu/packages/build-tools.scm=20(meson)?=
=?UTF-8?q?=C2=A0:=20Add=20meson=20package.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
gnu/packages/build-tools.scm | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 8901a4657..e26c31511 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2017 Corentin Bocquillon <corentin@nybble.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -23,7 +24,9 @@
#:use-module (guix download)
#:use-module (gnu packages)
#:use-module (gnu packages python)
- #:use-module (guix build-system gnu))
+ #:use-module (gnu packages ninja)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix build-system python))
(define-public bam
(package
@@ -62,3 +65,27 @@ describe the build process. It takes its inspiration for the script files
from scons. While scons focuses on being 100% correct when building, bam
makes a few sacrifices to acquire fast full and incremental build times.")
(license license:bsd-3)))
+
+(define-public meson
+ (package
+ (name "meson")
+ (version "0.39.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/mesonbuild/meson/"
+ "archive/" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1jwgd6sl7zl7h16id3405gwk6vlkk86ggwrp0k47njwkxmryq8d4"))))
+ (build-system python-build-system)
+ (inputs `(("ninja", ninja)))
+ (home-page "https://mesonbuild.com/")
+ (synopsis "Meson build system")
+ (description
+ "The meson build system is focused on user-friendliness and speed.
+According to the developpers of meson, every seconds spent waiting for
+the build system, writing or debugging build definitions is a second wasted
+so meson is designed to be very fast and simple.
+It supports C, C++, Fortran, Java and Rust.")
+ (license asl2.0)))
--
2.12.2
next reply other threads:[~2017-04-19 21:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-19 20:47 Corentin Bocquillon [this message]
2017-04-20 12:16 ` bug#26568: [PATCH] gnu : Add meson Ludovic Courtès
2017-04-21 12:00 ` Corentin Bocquillon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170419204750.GA13306@nibupac \
--to=corentin@nibupac \
--cc=26568@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.