From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20=C4=8Cech?= Subject: [PATCH 4/5] gnu: Add emotion-generic-players Date: Thu, 26 Feb 2015 01:31:12 +0100 Message-ID: <1424910673-17665-4-git-send-email-sleep_walker@suse.cz> References: <1424910673-17665-1-git-send-email-sleep_walker@suse.cz> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36582) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQmMU-0005eb-OQ for guix-devel@gnu.org; Wed, 25 Feb 2015 19:31:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YQmMT-0006LV-Nb for guix-devel@gnu.org; Wed, 25 Feb 2015 19:31:30 -0500 Received: from cantor2.suse.de ([195.135.220.15]:45184 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YQmMT-0006LP-IE for guix-devel@gnu.org; Wed, 25 Feb 2015 19:31:29 -0500 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 1B572AB09 for ; Thu, 26 Feb 2015 00:31:29 +0000 (UTC) In-Reply-To: <1424910673-17665-1-git-send-email-sleep_walker@suse.cz> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/efl.scm (emotion-generic-players): New variable. --- gnu/packages/efl.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/efl.scm b/gnu/packages/efl.scm index 3d5ed74..d69cb5c 100644 --- a/gnu/packages/efl.scm +++ b/gnu/packages/efl.scm @@ -41,6 +41,7 @@ #:use-module (gnu packages photo) #:use-module (gnu packages pkg-config) #:use-module (gnu packages valgrind) + #:use-module (gnu packages video) #:use-module (gnu packages xorg)) (define-public efl @@ -161,3 +162,24 @@ (description "Set of generic loaders allowing to open pictures, documents and media files into Evas (EFL canvas library)") (license license:gpl2+))) + +(define-public emotion-generic-players + (package + (name "emotion-generic-players") + (version "1.13.0") + (source (origin + (method url-fetch) + (uri (string-append "http://download.enlightenment.org/rel/libs/emotion_generic_players/emotion_generic_players-" version ".tar.gz")) + (sha256 + (base32 "0gin3cjhfj75v0gjsvv7harbj4fs4r7r1sfi74ncxzna71nrd8r3")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("efl" ,efl) + ("vlc" ,vlc))) + (home-page "http://www.enlightenment.org") + (synopsis "Plugins for integrating media players in EFL based applications") + (description + "Set of generic media players allowing to open video files through emotion. Useful only for emotion library based applications.") + (license license:bsd-2))) -- 2.0.5