mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: libfive: Update to 0-3.6e39254.
* gnu/packages/engineering.scm (libfive): Update to 0-3.6e39254. [arguments]: Add build phase "find-catch". [inputs]: Replace catch-framework with catch-framework2. [license]: Change license for library.
This commit is contained in:
parent
8aa59a54e9
commit
6a0b9500f9
1 changed files with 11 additions and 5 deletions
|
@ -713,8 +713,8 @@ (define-public translate2geda
|
|||
(license license:gpl2+))))
|
||||
|
||||
(define-public libfive
|
||||
(let ((commit "9d857d1923abecb0e5935b9287d22661f6efaac5")
|
||||
(revision "2"))
|
||||
(let ((commit "6e39254e57c179459bb929df49ae96a6017a0ed6")
|
||||
(revision "3"))
|
||||
(package
|
||||
(name "libfive")
|
||||
(version (git-version "0" revision commit))
|
||||
|
@ -725,7 +725,7 @@ (define-public libfive
|
|||
(commit commit)))
|
||||
(sha256
|
||||
(base32
|
||||
"1r40kyx30wz31cwwlfvfh7fgqkxq3n8dxhswpi9qpf4r5h3l8wsn"))
|
||||
"0ryv2hcbrwqc087w7rrs4a2irkcpmqync00g4dh8n7jn10w2jkim"))
|
||||
(file-name (git-file-name name version))
|
||||
(snippet
|
||||
;; Remove bundled catch since we provide our own.
|
||||
|
@ -740,12 +740,18 @@ (define-public libfive
|
|||
(add-after 'unpack 'remove-native-compilation
|
||||
(lambda _
|
||||
(substitute* "CMakeLists.txt" (("-march=native") ""))
|
||||
#t))
|
||||
(add-after 'unpack 'find-catch
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(setenv "CPLUS_INCLUDE_PATH"
|
||||
(string-append (assoc-ref inputs "catch")
|
||||
"/include/catch"))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("boost" ,boost)
|
||||
("catch" ,catch-framework)
|
||||
("catch" ,catch-framework2)
|
||||
("libpng" ,libpng)
|
||||
("qtbase" ,qtbase)
|
||||
("eigen" ,eigen)
|
||||
|
@ -758,7 +764,7 @@ (define-public libfive
|
|||
function calls into the geometry kernel: everything is visible to the user.
|
||||
Even fundamental, primitive shapes are represented as code in the user-level
|
||||
language.")
|
||||
(license (list license:lgpl2.1+ ;library
|
||||
(license (list license:mpl2.0 ;library
|
||||
license:gpl2+))))) ;Guile bindings and GUI
|
||||
|
||||
(define-public ao
|
||||
|
|
Loading…
Reference in a new issue