From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH] gnu: mumble: Add 'murmur' output. Date: Wed, 1 Feb 2017 20:43:12 +0000 Message-ID: <20170201204312.3005-2-contact.ng0@cryptolab.net> References: <20170201204312.3005-1-contact.ng0@cryptolab.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34422) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cZ1kt-0004xV-SE for guix-devel@gnu.org; Wed, 01 Feb 2017 15:43:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cZ1kp-0002Zb-Vc for guix-devel@gnu.org; Wed, 01 Feb 2017 15:43:51 -0500 Received: from aibo.runbox.com ([91.220.196.211]:60712) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cZ1kp-0002Z8-OI for guix-devel@gnu.org; Wed, 01 Feb 2017 15:43:47 -0500 In-Reply-To: <20170201204312.3005-1-contact.ng0@cryptolab.net> 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" To: guix-devel@gnu.org From: ng0 * gnu/packages/telephony.scm (mumble): Add new output 'murmur'. [arguments]: Add "no-ice" to config phase. --- gnu/packages/telephony.scm | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/gnu/packages/telephony.scm b/gnu/packages/telephony.scm index c393caace..ce5d276f5 100644 --- a/gnu/packages/telephony.scm +++ b/gnu/packages/telephony.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2015, 2016 Efraim Flashner ;;; Copyright © 2016 Lukas Gradl ;;; Copyright © 2016 Francesco Frassinelli -;;; Copyright © 2016 ng0 +;;; Copyright © 2016, 2017 ng0 ;;; ;;; This file is part of GNU Guix. ;;; @@ -353,7 +353,7 @@ address of one of the participants.") (string-append "CONFIG+=" (string-join (list "no-update" - "no-server" + "no-ice" "no-embed-qt-translations" "no-bundled-speex" "pch" @@ -377,6 +377,11 @@ address of one of the participants.") (replace 'install ; install phase does not exist (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) + (murmur (assoc-ref outputs "murmur")) + (mbin (string-append murmur "/bin")) + (metc (string-append murmur "/etc/murmur")) + (mdbus (string-append murmur "/etc/dbus-1/system.d/")) + (mman (string-append murmur "/share/man/man1")) (bin (string-append out "/bin")) (services (string-append out "/share/services")) (applications (string-append out "/share/applications")) @@ -390,6 +395,13 @@ address of one of the participants.") (install-file "icons/mumble.svg" icons) (install-file "man/mumble-overlay.1" man) (install-file "man/mumble.1" man) + ;; Murmur + (install-file "release/murmurd" mbin) + (install-file "scripts/murmur.ini.system" metc) + (rename-file (string-append metc "/murmur.ini.system") + (string-append metc "/murmur.ini")) + (install-file "scripts/murmur.conf" mdbus) + (install-file "man/murmurd.1" mman) (for-each (lambda (file) (install-file file lib)) (find-files "." "\\.so\\.")) (for-each (lambda (file) (install-file file lib)) @@ -410,6 +422,8 @@ address of one of the participants.") ("pulseaudio" ,pulseaudio))) (native-inputs `(("pkg-config" ,pkg-config))) + (outputs '("out" ; The client + "murmur")) ; The server (synopsis "Low-latency, high quality voice chat software") (description "Mumble is an low-latency, high quality voice chat -- 2.11.0