gnu: Add libarea.
* gnu/packages/engineering.scm (libarea): New variable.
This commit is contained in:
parent
2895a87fbf
commit
2003e837f4
|
@ -51,6 +51,7 @@
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
#:use-module (gnu packages boost)
|
#:use-module (gnu packages boost)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
|
#:use-module (gnu packages cmake)
|
||||||
#:use-module (gnu packages commencement)
|
#:use-module (gnu packages commencement)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages curl)
|
#:use-module (gnu packages curl)
|
||||||
|
@ -2216,6 +2217,49 @@ full programmatic control over your models.")
|
||||||
(home-page "https://www.openscad.org/")
|
(home-page "https://www.openscad.org/")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public libarea
|
||||||
|
(let ((revision "1")
|
||||||
|
(commit "8f8bac811c10f1f01fda0d742a18591f61dd76ee"))
|
||||||
|
(package
|
||||||
|
(name "libarea")
|
||||||
|
(version (git-version "0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference (url "https://github.com/Heeks/libarea.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0pvqz6cabxqdz5y26wnj6alkn8v5d7gkx0d3h8xmg4lvy9r3kh3g"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs `(("boost" ,boost)
|
||||||
|
("python-wrapper" ,python-wrapper)))
|
||||||
|
(native-inputs
|
||||||
|
`(("cmake" ,cmake)))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'configure 'cmake-configure
|
||||||
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
|
(let ((out (assoc-ref outputs "out"))
|
||||||
|
(cmake (assoc-ref inputs "cmake")))
|
||||||
|
(mkdir-p "build")
|
||||||
|
(invoke "cmake"
|
||||||
|
(string-append "-DCMAKE_INSTALL_PREFIX=" out)))))
|
||||||
|
(delete 'configure))))
|
||||||
|
(home-page "https://github.com/Heeks/libarea")
|
||||||
|
(synopsis
|
||||||
|
"Library and python module for pocketing and profiling operations")
|
||||||
|
(description
|
||||||
|
"Area is a CAM-related software for pocketing operation.
|
||||||
|
|
||||||
|
This project provides library and associated python-module to compute pocket
|
||||||
|
operations.")
|
||||||
|
(license (list
|
||||||
|
license:bsd-3
|
||||||
|
license:gpl3+)))))
|
||||||
|
|
||||||
(define-public libspnav
|
(define-public libspnav
|
||||||
(package
|
(package
|
||||||
(name "libspnav")
|
(name "libspnav")
|
||||||
|
|
Loading…
Reference in New Issue