guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: Add orc.


From: ???
Subject: 01/01: gnu: Add orc.
Date: Thu, 05 Feb 2015 08:12:33 +0000

iyzsong pushed a commit to branch master
in repository guix.

commit 195857b0f75332898b7531b85d2c36bd8c0f325b
Author: 宋文武 <address@hidden>
Date:   Thu Feb 5 16:09:53 2015 +0800

    gnu: Add orc.
    
    * gnu/packages/gstreamer.scm (orc): New variable.
---
 gnu/packages/gstreamer.scm |   25 ++++++++++++++++++++++++-
 1 files changed, 24 insertions(+), 1 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 003b78a..2332ef6 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013 Andreas Enge <address@hidden>
 ;;; Copyright   2014 John Darrington <address@hidden>
+;;; Copyright © 2015 Sou Bunnbu <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -18,7 +19,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages gstreamer)
-  #:use-module ((guix licenses) #:select (lgpl2.0+))
+  #:use-module ((guix licenses) #:select (lgpl2.0+ bsd-2 bsd-3))
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix build-system gnu)
@@ -38,6 +39,28 @@
   #:use-module (gnu packages python)
   #:use-module (gnu packages xml))
 
+(define-public orc
+  (package
+    (name "orc")
+    (version "0.4.23")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://gstreamer.freedesktop.org/data/src/";
+                                  "orc/orc-" version ".tar.xz"))
+              (sha256
+               (base32
+                "1ryz1gfgrxcj806cakcblxf0bcwq8p2mw8k86fs3f5wlwayawzkn"))))
+    (build-system gnu-build-system)
+    (home-page "http://code.entropywave.com/orc/";)
+    (synopsis "Oil runtime compiler")
+    (description
+     "Orc is a just-in-time compiler implemented as a library and set of
+associated tools for compiling and executing simple programs that operate on
+arrays of data.")
+    ;; The source code implementing the Marsenne Twister algorithm is licensed
+    ;; under the 3-clause BSD license, the rest is under 2-clause BSD license.
+    (license (list bsd-2 bsd-3))))
+
 (define-public gstreamer
   (package
     (name "gstreamer")



reply via email to

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