gnu: smartmontools: Use HTTPS home page.
[jackhill/guix/guix.git] / gnu / packages / build-tools.scm
CommitLineData
33f79a74
RW
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
162dd290 3;;; Copyright © 2017 Corentin Bocquillon <corentin@nybble.fr>
33f79a74
RW
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages build-tools)
21 #:use-module ((guix licenses) #:prefix license:)
22 #:use-module (guix utils)
23 #:use-module (guix packages)
24 #:use-module (guix download)
25 #:use-module (gnu packages)
c97cef0a 26 #:use-module (gnu packages compression)
33f79a74 27 #:use-module (gnu packages python)
162dd290
CB
28 #:use-module (gnu packages ninja)
29 #:use-module (guix build-system gnu)
30 #:use-module (guix build-system python))
33f79a74
RW
31
32(define-public bam
33 (package
34 (name "bam")
35 (version "0.4.0")
36 (source (origin
37 (method url-fetch)
38 (uri (string-append "http://github.com/downloads/matricks/"
39 "bam/bam-" version ".tar.bz2"))
40 (sha256
41 (base32
42 "0z90wvyd4nfl7mybdrv9dsd4caaikc6fxw801b72gqi1m9q0c0sn"))))
43 (build-system gnu-build-system)
44 (arguments
45 `(#:phases
46 (modify-phases %standard-phases
47 (delete 'configure)
48 (replace 'build
49 (lambda _
50 (zero? (system* "bash" "make_unix.sh"))))
51 (replace 'check
52 (lambda _
53 (zero? (system* "python" "scripts/test.py"))))
54 (replace 'install
55 (lambda* (#:key outputs #:allow-other-keys)
56 (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
57 (mkdir-p bin)
58 (install-file "bam" bin)
59 #t))))))
60 (native-inputs
61 `(("python" ,python-2)))
62 (home-page "https://matricks.github.io/bam/")
63 (synopsis "Fast and flexible build system")
64 (description "Bam is a fast and flexible build system. Bam uses Lua to
65describe the build process. It takes its inspiration for the script files
66from scons. While scons focuses on being 100% correct when building, bam
67makes a few sacrifices to acquire fast full and incremental build times.")
68 (license license:bsd-3)))
162dd290
CB
69
70(define-public meson
71 (package
72 (name "meson")
67f8ba11 73 (version "0.42.0")
162dd290
CB
74 (source (origin
75 (method url-fetch)
76 (uri (string-append "https://github.com/mesonbuild/meson/"
77 "archive/" version ".tar.gz"))
78 (file-name (string-append name "-" version ".tar.gz"))
79 (sha256
80 (base32
67f8ba11 81 "0vyp9rkymzzzilhnf04ryszslyp9a0y0wf4agyijd4w5lcnqlcbc"))))
162dd290
CB
82 (build-system python-build-system)
83 (inputs `(("ninja", ninja)))
67f8ba11 84 (propagated-inputs `(("python" ,python)))
162dd290
CB
85 (home-page "https://mesonbuild.com/")
86 (synopsis "Build system designed to be fast and user-friendly")
87 (description
88 "The Meson build system is focused on user-friendliness and speed.
89It can compile code written in C, C++, Fortran, Java, Rust, and other
90languages. Meson provides features comparable to those of the
91Autoconf/Automake/make combo. Build specifications, also known as @dfn{Meson
92files}, are written in a custom domain-specific language (DSL) that resembles
93Python.")
94 (license license:asl2.0)))
c97cef0a 95
dab666cd
PM
96(define-public meson-for-build
97 (package
98 (inherit meson)
99 (name "meson-for-build")
100 (version "0.42.0")
101 (source (origin
102 (method url-fetch)
103 (uri (string-append "https://github.com/mesonbuild/meson/"
104 "archive/" version ".tar.gz"))
105 (file-name (string-append name "-" version ".tar.gz"))
106 (sha256
107 (base32
108 "0vyp9rkymzzzilhnf04ryszslyp9a0y0wf4agyijd4w5lcnqlcbc"))
109 (patches (search-patches "meson-for-build-rpath.patch"))))
110
111 ;; People should probably install "meson", not "meson-for-build".
112 (properties `((hidden? . #t)))))
113
c97cef0a
OP
114(define-public premake4
115 (package
116 (name "premake")
117 (version "4.3")
118 (source (origin
119 (method url-fetch)
120 (uri (string-append "mirror://sourceforge/premake/Premake/"
121 version "/premake-" version "-src.zip"))
122 (sha256
123 (base32
124 "1017rd0wsjfyq2jvpjjhpszaa7kmig6q1nimw76qx3cjz2868lrn"))))
125 (build-system gnu-build-system)
126 (native-inputs
127 `(("unzip" ,unzip))) ; for unpacking the source
128 (arguments
129 `(#:make-flags '("CC=gcc")
130 #:tests? #f ; No test suite
131 #:phases
132 (modify-phases %standard-phases
133 (delete 'configure)
134 (add-after 'unpack 'enter-source
135 (lambda _ (chdir "build/gmake.unix") #t))
136 (replace 'install
137 (lambda* (#:key outputs #:allow-other-keys)
138 (install-file "../../bin/release/premake4"
139 (string-append (assoc-ref outputs "out") "/bin"))
140 #t)))))
141 (synopsis "Portable software build tool")
142 (description "@code{premake4} is a command line utility that reads a
143scripted definition of a software project and outputs @file{Makefile}s or
144other lower-level build files.")
145 (home-page "https://premake.github.io")
146 (license license:bsd-3)))