From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55728) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dHIZX-0001UU-32 for guix-patches@gnu.org; Sat, 03 Jun 2017 19:35:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dHIZS-0001NB-CJ for guix-patches@gnu.org; Sat, 03 Jun 2017 19:35:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51688) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dHIZS-0001N4-A3 for guix-patches@gnu.org; Sat, 03 Jun 2017 19:35:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dHIZS-0005Xw-49 for guix-patches@gnu.org; Sat, 03 Jun 2017 19:35:02 -0400 Subject: bug#27224: [PATCH 3/4] gnu: Add libdvbpsi. Resent-Message-ID: From: =?UTF-8?Q?Cl=C3=A9ment?= Lassieur Date: Sun, 4 Jun 2017 01:33:47 +0200 Message-Id: <20170603233348.7884-3-clement@lassieur.org> In-Reply-To: <20170603233348.7884-1-clement@lassieur.org> References: <20170603233348.7884-1-clement@lassieur.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27224@debbugs.gnu.org * gnu/packages/video.scm (libdvbpsi): New variable. --- gnu/packages/video.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 8b8140eb9..af05a40bf 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2207,3 +2207,24 @@ JPEG video, and several audio codecs. They can easily be extended to support additional (audio and/or video) codecs, and can also be used to build basic RTSP or SIP clients and servers.") (license license:lgpl3+))) + +(define-public libdvbpsi + (package + (name "libdvbpsi") + (version "1.3.1") + (source (origin + (method url-fetch) + (uri (string-append + "https://download.videolan.org/pub/libdvbpsi/" + version "/libdvbpsi-" version ".tar.bz2")) + (sha256 + (base32 + "0824r08kaspbrrg2dd5d46s475zb7j59brqkm2y6x3mdsnpng0yn")))) + (build-system gnu-build-system) + (home-page "https://www.videolan.org/developers/libdvbpsi.html") + (synopsis "Library for decoding and generation of MPEG TS and DVB PSI +tables") + (description "libdvbpsi is a simple library designed for decoding and +generation of MPEG TS and DVB PSI tables according to standards ISO/IEC 13818s +and ITU-T H.222.0.") + (license license:lgpl2.1))) -- 2.13.0