From: Nikita Karetnikov <nikita@karetnikov.org>
To: bug-guix@gnu.org
Subject: [PATCH] gnu: Add Libogg.
Date: Thu, 17 Jan 2013 20:57:38 -0500 [thread overview]
Message-ID: <874nifuuad.fsf@karetnikov.org> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 35 bytes --]
Hi,
Can I push this one?
Nikita
[-- Attachment #1.2: 0001-gnu-Add-Libogg.patch --]
[-- Type: text/x-diff, Size: 2874 bytes --]
From ae433f077cd8f0ec4a415b0526138d39f6078dce Mon Sep 17 00:00:00 2001
From: Nikita Karetnikov <nikita@karetnikov.org>
Date: Fri, 18 Jan 2013 01:51:08 +0000
Subject: [PATCH] gnu: Add Libogg.
* gnu/packages/libogg.scm: New file.
* Makefile.am (MODULES): Add it.
---
Makefile.am | 1 +
gnu/packages/libogg.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+), 0 deletions(-)
create mode 100644 gnu/packages/libogg.scm
diff --git a/Makefile.am b/Makefile.am
index 86f9651..3ac2379 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -85,6 +85,7 @@ MODULES = \
gnu/packages/libffi.scm \
gnu/packages/libidn.scm \
gnu/packages/libjpeg.scm \
+ gnu/packages/libogg.scm \
gnu/packages/libsigsegv.scm \
gnu/packages/libtiff.scm \
gnu/packages/libunistring.scm \
diff --git a/gnu/packages/libogg.scm b/gnu/packages/libogg.scm
new file mode 100644
index 0000000..9bbc982
--- /dev/null
+++ b/gnu/packages/libogg.scm
@@ -0,0 +1,46 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages libogg)
+ #:use-module ((guix licenses) #:select (bsd-3))
+ #:use-module (gnu packages compression)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu))
+
+(define-public libogg
+ (package
+ (name "libogg")
+ (version "1.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://downloads.xiph.org/releases/ogg/libogg-"
+ version ".tar.xz"))
+ (sha256
+ (base32
+ "0jy79ffkl34vycnwfsj4svqsdg1lwy2l1rr49y8r4d44kh12a5r3"))))
+ (build-system gnu-build-system)
+ (inputs `(("xz" ,xz)))
+ (home-page "http://xiph.org/ogg/")
+ (synopsis
+ "Libogg, a library that allows to create, decode, and work with Ogg
+bitstreams")
+ (description
+ "Libogg allows to create, decode, and work with Ogg bitstreams.")
+ (license bsd-3)))
\ No newline at end of file
--
1.7.5.4
[-- Attachment #2: Type: application/pgp-signature, Size: 835 bytes --]
next reply other threads:[~2013-01-18 1:57 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-18 1:57 Nikita Karetnikov [this message]
2013-01-18 10:04 ` [PATCH] gnu: Add Libogg Andreas Enge
2013-01-18 17:25 ` Ludovic Courtès
2013-01-18 17:32 ` Nikita Karetnikov
2013-01-18 10:18 ` Andreas Enge
2013-01-18 13:09 ` To-do lists Ludovic Courtès
2013-01-18 13:16 ` Andreas Enge
2013-01-18 17:47 ` Nikita Karetnikov
2013-01-18 21:15 ` Ludovic Courtès
2013-01-22 23:59 ` Nikita Karetnikov
2013-01-23 15:38 ` Ludovic Courtès
2013-01-23 16:26 ` Jason Self
2013-01-23 22:39 ` Ludovic Courtès
2013-01-23 23:45 ` Jason Self
2013-01-28 13:22 ` Ludovic Courtès
2013-01-28 21:47 ` Andreas Enge
2013-01-28 23:02 ` Cyril Roelandt
2013-01-28 23:26 ` Andreas Enge
2013-01-29 9:31 ` Ludovic Courtès
2013-01-29 12:37 ` Andreas Enge
2013-01-29 1:52 ` Florian Friesdorf
2013-01-29 9:04 ` Andreas Enge
2013-01-29 19:08 ` Florian Friesdorf
2013-01-29 21:33 ` Ludovic Courtès
2013-01-29 22:07 ` Andreas Enge
2013-01-30 20:56 ` Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=874nifuuad.fsf@karetnikov.org \
--to=nikita@karetnikov.org \
--cc=bug-guix@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.