gnu: gplates: Update to 2.4.
* gnu/packages/geo.scm (gplates): Update to 2.4. [source]: Use git-fetch and fetch from GitHub. [arguments]: Remove #:configure-flags. [native-inputs]: Remove unzip. Change-Id: Idf7c7ffb902f98361a897ce122c076a1a2f7fdf2master
parent
350cdbe838
commit
2e2d378551
|
@ -3187,23 +3187,19 @@ latitude and longitude.")
|
||||||
(define-public gplates
|
(define-public gplates
|
||||||
(package
|
(package
|
||||||
(name "gplates")
|
(name "gplates")
|
||||||
;; Note: use a pre-release to cope with newer Boost, ref
|
(version "2.4")
|
||||||
;; https://discourse.gplates.org/t/compilation-error-with-boost-1-77/452/3
|
|
||||||
(version "2.3.01-beta.3")
|
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri "https://cloudstor.aarnet.edu.au/plus/s\
|
(uri (git-reference
|
||||||
/ojsYNOyUYE3evNp/download?path=%2F&files=gplates_2.3.1-beta.3_src.zip")
|
(url "https://github.com/GPlates/GPlates")
|
||||||
(file-name (string-append name "-" version ".zip"))
|
(commit (string-append "GPlates-" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"06i87dfab0cq9gdi5mh6sf9wigawpp0d05zbyslv910443i26gwv"))))
|
"1awb4igchgpmrvj6blxd1w81c617bs66w6cfrwvf30n6rjlyn6q5"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "-DBoost_NO_BOOST_CMAKE=ON")
|
(list #:tests? #f)) ;no test target
|
||||||
#:tests? #f)) ;no test target
|
|
||||||
(native-inputs
|
|
||||||
(list unzip)) ;for the beta
|
|
||||||
(inputs
|
(inputs
|
||||||
(list boost
|
(list boost
|
||||||
cgal
|
cgal
|
||||||
|
|
Reference in New Issue