2013-03-12 04:40:00 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
2014-03-21 08:44:03 +01:00
|
|
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
2014-10-08 18:55:40 +02:00
|
|
|
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
2014-10-19 04:03:42 +02:00
|
|
|
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
|
2015-04-28 09:29:17 +02:00
|
|
|
;;; Copyright © 2015 Sou Bunnbu <iyzsong@gmail.com>
|
2013-03-12 04:40:00 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages cmake)
|
2014-10-08 18:55:40 +02:00
|
|
|
#:use-module ((guix licenses) #:select (bsd-3))
|
2013-03-12 04:40:00 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2014-10-19 04:03:42 +02:00
|
|
|
#:use-module (guix utils)
|
2013-03-12 04:40:00 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (gnu packages)
|
2014-10-08 18:55:40 +02:00
|
|
|
#:use-module (gnu packages backup)
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages curl)
|
2014-03-21 08:44:03 +01:00
|
|
|
#:use-module (gnu packages file)
|
2014-10-19 04:03:42 +02:00
|
|
|
#:use-module (gnu packages xml))
|
2013-03-12 04:40:00 +01:00
|
|
|
|
|
|
|
(define-public cmake
|
|
|
|
(package
|
|
|
|
(name "cmake")
|
2015-04-28 09:29:17 +02:00
|
|
|
(version "3.2.2")
|
2013-03-12 04:40:00 +01:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://www.cmake.org/files/v"
|
2014-10-19 04:03:42 +02:00
|
|
|
(version-major+minor version)
|
2013-03-12 04:40:00 +01:00
|
|
|
"/cmake-" version ".tar.gz"))
|
|
|
|
(sha256
|
2015-04-28 09:29:17 +02:00
|
|
|
(base32 "0y3w83al0vh9ll7fnqm3nx7l8hsl85k8iv9abxb791q36rp4xsdd"))
|
gnu: Use the 'patches' field of <origin>.
* gnu/packages/apr.scm,
gnu/packages/autotools.scm,
gnu/packages/avahi.scm,
gnu/packages/cdrom.scm,
gnu/packages/cmake.scm,
gnu/packages/cpio.scm,
gnu/packages/cross-base.scm,
gnu/packages/emacs.scm,
gnu/packages/flex.scm,
gnu/packages/fontutils.scm,
gnu/packages/glib.scm,
gnu/packages/grub.scm,
gnu/packages/guile.scm,
gnu/packages/idutils.scm,
gnu/packages/libevent.scm,
gnu/packages/linux.scm,
gnu/packages/mail.scm,
gnu/packages/make-bootstrap.scm,
gnu/packages/mp3.scm,
gnu/packages/oggvorbis.scm,
gnu/packages/pdf.scm,
gnu/packages/plotutils.scm,
gnu/packages/qemu.scm,
gnu/packages/recutils.scm,
gnu/packages/rush.scm,
gnu/packages/scheme.scm,
gnu/packages/system.scm,
gnu/packages/tcsh.scm,
gnu/packages/valgrind.scm,
gnu/packages/vpn.scm,
gnu/packages/w3m: Use the 'patches' field of <origin> instead of
adding a patch as input plus using #:patches.
2013-10-09 00:09:04 +02:00
|
|
|
(patches (list (search-patch "cmake-fix-tests.patch")))))
|
2013-03-12 04:40:00 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2014-03-21 08:44:03 +01:00
|
|
|
`(#:test-target "test"
|
2015-04-28 11:16:18 +02:00
|
|
|
#:parallel-tests? #f ; 3 test from RunCMake fails
|
2014-10-08 18:55:40 +02:00
|
|
|
#:phases (alist-cons-before
|
|
|
|
'configure 'patch-bin-sh
|
|
|
|
(lambda _
|
|
|
|
;; Replace "/bin/sh" by the right path in... a lot of
|
|
|
|
;; files.
|
|
|
|
(substitute*
|
2013-03-12 04:40:00 +01:00
|
|
|
'("Modules/CompilerId/Xcode-3.pbxproj.in"
|
|
|
|
"Modules/CompilerId/Xcode-1.pbxproj.in"
|
|
|
|
"Modules/CompilerId/Xcode-2.pbxproj.in"
|
|
|
|
"Modules/CPack.RuntimeScript.in"
|
|
|
|
"Source/cmakexbuild.cxx"
|
|
|
|
"Source/cmGlobalXCodeGenerator.cxx"
|
|
|
|
"Source/CTest/cmCTestBatchTestHandler.cxx"
|
|
|
|
"Source/cmLocalUnixMakefileGenerator3.cxx"
|
2015-02-26 15:06:41 +01:00
|
|
|
"Source/cmExecProgramCommand.cxx"
|
2013-03-12 04:40:00 +01:00
|
|
|
"Utilities/cmbzip2/Makefile-libbz2_so"
|
|
|
|
"Utilities/Release/release_cmake.cmake"
|
|
|
|
"Utilities/cmlibarchive/libarchive/archive_write_set_format_shar.c"
|
2015-04-28 09:29:17 +02:00
|
|
|
"Tests/CMakeLists.txt"
|
|
|
|
"Tests/RunCMake/File_Generate/RunCMakeTest.cmake")
|
2014-10-08 18:55:40 +02:00
|
|
|
(("/bin/sh") (which "sh"))))
|
|
|
|
(alist-cons-before
|
|
|
|
'configure 'set-paths
|
|
|
|
(lambda _
|
|
|
|
;; Help cmake's bootstrap process to find system libraries
|
|
|
|
(begin
|
|
|
|
(setenv "CMAKE_LIBRARY_PATH" (getenv "LIBRARY_PATH"))
|
2015-04-28 11:16:18 +02:00
|
|
|
(setenv "CMAKE_INCLUDE_PATH" (getenv "CPATH"))
|
|
|
|
;; Get verbose output from failed tests
|
|
|
|
(setenv "CTEST_OUTPUT_ON_FAILURE" "TRUE")))
|
2014-10-08 18:55:40 +02:00
|
|
|
(alist-replace
|
|
|
|
'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(zero? (system*
|
|
|
|
"./configure"
|
|
|
|
(string-append "--prefix=" out)
|
|
|
|
"--system-libs"
|
2015-04-28 09:29:17 +02:00
|
|
|
"--no-system-jsoncpp" ; not packaged yet
|
2014-10-08 18:55:40 +02:00
|
|
|
;; By default, the man pages and other docs land
|
|
|
|
;; in PREFIX/man and PREFIX/doc, but we want them
|
|
|
|
;; in share/{man,doc}. Note that unlike
|
|
|
|
;; autoconf-generated configure scripts, cmake's
|
|
|
|
;; configure prepends "PREFIX/" to what we pass
|
|
|
|
;; to --mandir and --docdir.
|
|
|
|
"--mandir=share/man"
|
|
|
|
,(string-append
|
|
|
|
"--docdir=share/doc/cmake-"
|
2014-10-19 04:03:42 +02:00
|
|
|
(version-major+minor version))))))
|
2014-10-08 18:55:40 +02:00
|
|
|
%standard-phases)))))
|
2013-03-12 04:40:00 +01:00
|
|
|
(inputs
|
2014-10-08 18:55:40 +02:00
|
|
|
`(("file" ,file)
|
|
|
|
("curl" ,curl)
|
|
|
|
("zlib" ,zlib)
|
|
|
|
("expat" ,expat)
|
|
|
|
("bzip2" ,bzip2)
|
|
|
|
("libarchive" ,libarchive)))
|
2015-02-28 21:49:23 +01:00
|
|
|
(native-search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "CMAKE_PREFIX_PATH")
|
|
|
|
(files '("")))))
|
2013-03-12 04:40:00 +01:00
|
|
|
(home-page "http://www.cmake.org/")
|
2013-10-14 09:48:52 +02:00
|
|
|
(synopsis "Cross-platform build system")
|
2013-03-12 04:40:00 +01:00
|
|
|
(description
|
|
|
|
"CMake is a family of tools designed to build, test and package software.
|
|
|
|
CMake is used to control the software compilation process using simple platform
|
2014-10-08 18:55:40 +02:00
|
|
|
and compiler independent configuration files. CMake generates native makefiles
|
2013-03-12 04:40:00 +01:00
|
|
|
and workspaces that can be used in the compiler environment of your choice.")
|
|
|
|
(license bsd-3)))
|