me
/
guix
Archived
1
0
Fork 0

gnu: Add lib3ds.

* gnu/packages/engineering.scm (lib3ds): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Ekaitz Zarraga 2020-05-15 16:05:11 +02:00 committed by Ludovic Courtès
parent 525fd26deb
commit 1c85ecec8e
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 22 additions and 0 deletions

View File

@ -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+)))