diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2022-07-27 23:32:42 -0400 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2022-08-03 13:54:39 +0800 |
commit | bf74f708d35b704ad2ead82890fb3dde50849d56 (patch) | |
tree | 039d43713339715c38749b42d5a90da75d69b296 | |
parent | 1b5d4bf4be78d0d1fc980a91d846bc577f69e9ab (diff) |
gnu: Add mikktspace.
* gnu/packages/graphics.scm (mikktspace): New variable.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
-rw-r--r-- | gnu/packages/graphics.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 38e6533a43..fc90c72bed 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -584,6 +584,45 @@ vertices, sorting by primitive type, merging of redundant materials and many more.") (license license:bsd-3))) +(define-public mikktspace + ;; The latest commit is used as there is no release. + (let ((commit "3e895b49d05ea07e4c2133156cfa94369e19e409") + (revision "0")) + (package + (name "mikktspace") + (version (git-version "0.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mmikk/MikkTSpace") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rjh9zflx51hdhnfadal87v4hhkrbprkv692hjkg9wkxx0ch39zi")))) + (build-system gnu-build-system) + (arguments + (list #:tests? #f + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (replace 'build + (lambda* (#:key make-flags parallel-build? #:allow-other-keys) + (invoke #$(cc-for-target) "mikktspace.c" "-O2" "-g" "-fPIC" + "-shared" "-o" "libmikktspace.so"))) + (replace 'install + (lambda _ + (install-file "mikktspace.h" + (string-append #$output "/include")) + (install-file "libmikktspace.so" + (string-append #$output "/lib"))))))) + (home-page "http://www.mikktspace.com/") + (synopsis "Library for a common standard for tangent spaces") + (description + "This package provides a common standard tangent space library used in +baking tools to produce normal maps.") + (license license:zlib)))) + (define-public openshadinglanguage (package (name "openshadinglanguage") |