gnu: cmake-shared: Update to 1.1.0-32.
* gnu/packages/cmake.scm (cmake-shared): Update to 1.1.0-32. [source]: Add snippet to remove bundled sources. Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
This commit is contained in:
parent
0696bd210e
commit
8bd0632a02
1 changed files with 32 additions and 24 deletions
|
@ -55,21 +55,29 @@
|
||||||
#:use-module (srfi srfi-1))
|
#:use-module (srfi srfi-1))
|
||||||
|
|
||||||
(define-public cmake-shared
|
(define-public cmake-shared
|
||||||
|
(let ((commit "8122f2b96c8da38ea41b653cf69958e75fe2129d")
|
||||||
|
(revision "32"))
|
||||||
(package
|
(package
|
||||||
(name "cmake-shared")
|
(name "cmake-shared")
|
||||||
(version "1.1.0")
|
(version
|
||||||
|
(git-version "1.1.0" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri
|
||||||
(git-reference
|
(git-reference
|
||||||
(url "https://github.com/lirios/cmake-shared.git")
|
(url "https://github.com/lirios/cmake-shared.git")
|
||||||
(commit
|
(commit commit)))
|
||||||
(string-append "v" version))))
|
|
||||||
(file-name
|
(file-name
|
||||||
(git-file-name name version))
|
(git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1srd3jmlalf0szgyp88ymhbnwds4qiywmf8lq1pif9g8irjjhdry"))))
|
(base32 "05avwzqcnliwx9h7qi1kl0iz4smqmxc4vkavyjbmlc6h2b97i58g"))
|
||||||
|
(modules '((guix build utils)
|
||||||
|
(ice-9 ftw)
|
||||||
|
(srfi srfi-1)))
|
||||||
|
(snippet
|
||||||
|
`(begin
|
||||||
|
(delete-file-recursively "3rdparty")))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ; No target
|
`(#:tests? #f)) ; No target
|
||||||
|
@ -79,7 +87,7 @@
|
||||||
(description "CMake-Shared are shared functions and macros for projects
|
(description "CMake-Shared are shared functions and macros for projects
|
||||||
using the CMake build system.")
|
using the CMake build system.")
|
||||||
(home-page "https://github.com/lirios/cmake-shared/")
|
(home-page "https://github.com/lirios/cmake-shared/")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
;;; Build phases shared between 'cmake-bootstrap' and the later variants
|
;;; Build phases shared between 'cmake-bootstrap' and the later variants
|
||||||
;;; that use cmake-build-system.
|
;;; that use cmake-build-system.
|
||||||
|
|
Reference in a new issue