[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
66/86: gnu: Add schroedinger.
From: |
guix-commits |
Subject: |
66/86: gnu: Add schroedinger. |
Date: |
Sun, 5 Jul 2020 16:17:09 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit c9f82045d594cb55b8719dd5b07064350566aa0b
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Jul 3 07:14:26 2020 -0400
gnu: Add schroedinger.
* gnu/packages/video.scm (schroedinger): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/video.scm | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 95509fd..c8410d7 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -170,6 +170,55 @@
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg))
+(define-public schroedinger
+ (package
+ (name "schroedinger")
+ (version "1.0.11")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "https://launchpad.net/" name "/trunk/" version
+ "/+download/" name "-" version ".tar.gz"))
+ (sha256
+ (base32 "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy"))))
+ (build-system gnu-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'move-docs
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out "/share/gtk-doc")
+ (string-append doc "/share/gtk-doc"))
+ #t))))))
+ (native-inputs
+ `(("dash" ,dash)
+ ("gtk-doc" ,gtk-doc)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("glew" ,glew)
+ ("opengl" ,mesa)))
+ (propagated-inputs
+ `(("orc" ,orc)))
+ (synopsis "Dirac video codec")
+ (description "Schroedinger is a project implementing the Dirac video codec
in
+ANSI C code. It is meant to be highly optimized and portable. It is developed
+as a joint effort between the BBC and Fluendo.")
+ (home-page "https://launchpad.net/schroedinger")
+ (license
+ ;; This library is licensed under 4 different licenses,
+ ;; and you can choose to use it under the terms of any one of them.
+ (list
+ license:gpl2+
+ license:lgpl2.0+
+ license:expat
+ license:mpl1.1))))
+
(define-public libmms
(package
(name "libmms")
- 60/86: gnu: Add faac., (continued)
- 60/86: gnu: Add faac., guix-commits, 2020/07/05
- 61/86: gnu: Add flite., guix-commits, 2020/07/05
- 67/86: gnu: Add libquicktime., guix-commits, 2020/07/05
- 35/86: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/07/05
- 38/86: gnu: gsettings-desktop-schemas: Update package definition., guix-commits, 2020/07/05
- 39/86: gnu: Add esound., guix-commits, 2020/07/05
- 40/86: gnu: faad2: Update to 2.8.8., guix-commits, 2020/07/05
- 46/86: gnu: Add libvisual., guix-commits, 2020/07/05
- 71/86: gnu: Add tinyalsa., guix-commits, 2020/07/05
- 78/86: gnu: Add webrtc-audio-processing., guix-commits, 2020/07/05
- 66/86: gnu: Add schroedinger.,
guix-commits <=
- 68/86: gnu: Add mjpegtools., guix-commits, 2020/07/05
- 85/86: gnu: gtk+-2: Update package definition., guix-commits, 2020/07/05
- 58/86: gnu: Add libtimidity., guix-commits, 2020/07/05
- 51/86: gnu: Add nng., guix-commits, 2020/07/05
- 52/86: gnu: Add ccextractor., guix-commits, 2020/07/05
- 55/86: gnu: Add libmpeg3., guix-commits, 2020/07/05
- 62/86: gnu: Add ffmpeg-2.8., guix-commits, 2020/07/05
- 20/86: gnu: dconf: Update to 0.36.0., guix-commits, 2020/07/05
- 63/86: gnu: Add libvideogfx., guix-commits, 2020/07/05
- 64/86: gnu: Add libde265., guix-commits, 2020/07/05