guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: Add lib3ds.


From: guix-commits
Subject: 03/05: gnu: Add lib3ds.
Date: Sat, 16 May 2020 13:55:26 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 1c85ecec8e8337ee99c7e3a59587afd6512db425
Author: Ekaitz Zarraga <address@hidden>
AuthorDate: Fri May 15 16:05:11 2020 +0200

    gnu: Add lib3ds.
    
    * gnu/packages/engineering.scm (lib3ds): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/engineering.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index aab414b..37b42ca 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -2595,3 +2595,25 @@ fraction of comparable file formats (3DS, STL, 
COLLADA...), and the format is
 accessible through a simple API")
       (license license:zlib)
       (home-page "http://openctm.sourceforge.net/";))))
+
+(define-public lib3ds
+  (package
+    (name "lib3ds")
+    (version "1.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://storage.googleapis.com/google-code-archive-downloads";
+             "/v2/code.google.com/lib3ds/lib3ds-" version ".zip"))
+       (sha256
+        (base32 "1qr9arfdkjf7q11xhvxwzmhxqz3nhcjkyb8zzfjpz9jm54q0rc7m"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("unzip" ,unzip)))
+    (home-page "https://code.google.com/archive/p/lib3ds";)
+    (synopsis "3DS format file toolkit")
+    (description "Lib3ds is a toolkit for handling the 3DS format for 3D
+model files.  Its main goal is to simplify the creation of 3DS import and
+export filters.")
+    (license license:lgpl2.1+)))



reply via email to

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