guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/07: gnu: Add vxl-1.


From: guix-commits
Subject: 03/07: gnu: Add vxl-1.
Date: Thu, 15 Aug 2019 08:09:22 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 4243af4e5741add5de4972cbea1a8ee6acb39f15
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Aug 13 17:47:03 2019 +0200

    gnu: Add vxl-1.
    
    * gnu/packages/image-processing.scm (vxl-1): New variable.
---
 gnu/packages/image-processing.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/image-processing.scm 
b/gnu/packages/image-processing.scm
index a4365f6..9c084e1 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -577,3 +577,34 @@ recalculates.")
     (description "VXL (the Vision-something-Libraries) is a collection of C++
 libraries designed for computer vision research and implementation.")
     (license license:bsd-3)))
+
+(define-public vxl-1
+  (package (inherit vxl)
+    (name "vxl")
+    (version "1.18.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/vxl/vxl.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1g4mr2cc58jwm0vasscbd4y5380wj3ahkvq121z4gs83fhavvxgz"))
+       (modules '((guix build utils)))
+       (snippet
+        '(begin
+           (for-each delete-file-recursively
+                     '("v3p/bzlib/"
+                       "v3p/geotiff/"
+                       "v3p/png/"
+                       "v3p/tiff/"
+                       "v3p/zlib/"))
+           (substitute* "v3p/CMakeLists.txt"
+             (("add_subdirectory\\((tiff|png|jpeg|zlib|bzlib|geotiff)\\)")
+              ""))
+           #t))))
+    (arguments
+     `(#:configure-flags
+       ;; Needed for itk-snap
+       (list "-DVNL_CONFIG_LEGACY_METHODS=ON")))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]