summaryrefslogtreecommitdiff
path: root/gnu/packages/graphics.scm
diff options
context:
space:
mode:
authornomike <nomike@nomike.com>2025-06-02 04:45:50 +0200
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-06-05 21:50:34 +0200
commitf0657cef973ca596e7e261fe2e89d05c375d6522 (patch)
tree8d528fa499824bbd308dfdcd0d6444a7620cf523 /gnu/packages/graphics.scm
parent3d70c680b6c796e89b534919889d6f62f30dc1f0 (diff)
gnu: opencsg: Update to 1.8.2.
* gnu/packages/graphics.scm (opencsg): Update to 1.8.2. [build-system]: Switch to cmake build system. [arguments]<#:phases>[configure]: Remove replacement. [skip-example]: Delete phase. [check]: Delete phase. Change-Id: Iba5ee7f2d3a95b2df8226a5f4d42baa2806eec84 Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
Diffstat (limited to 'gnu/packages/graphics.scm')
-rw-r--r--gnu/packages/graphics.scm18
1 files changed, 6 insertions, 12 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm
index 4415c566602..e61b6bc0f6c 100644
--- a/gnu/packages/graphics.scm
+++ b/gnu/packages/graphics.scm
@@ -2212,7 +2212,7 @@ and GPU architectures.")
(let ((dot-to-dash (lambda (c) (if (char=? c #\.) #\- c))))
(package
(name "opencsg")
- (version "1.4.2")
+ (version "1.8.1")
(source
(origin
(method git-fetch)
@@ -2224,18 +2224,12 @@ and GPU architectures.")
(file-name (git-file-name name version))
(sha256
(base32
- "00m4vs6jn3scqczscc4591l1d6zg6anqp9v1ldf9ymf70rdyvm7m"))))
- (build-system gnu-build-system)
+ "0q19mswyjlampdssqgik4q7j08fbj0dhxdr9mzg0i7ma2b2rhdhw"))))
+ (build-system cmake-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'configure
- (lambda* (#:key outputs #:allow-other-keys)
- (substitute* "src/Makefile"
- (("/usr/local") (assoc-ref outputs "out")))
- #t))
- (add-before 'build 'skip-example
- (lambda _ (chdir "src") #t)))))
+ `(#:phases (modify-phases %standard-phases
+ ;; library has no tests
+ (delete 'check))))
(inputs
(list glew freeglut))
(synopsis "Library for rendering Constructive Solid Geometry (CSG)")