From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49520) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j5BEe-0001Ir-F7 for guix-patches@gnu.org; Fri, 21 Feb 2020 11:33:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j5BEd-0000Sc-B0 for guix-patches@gnu.org; Fri, 21 Feb 2020 11:33:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:41938) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j5BEd-0000SS-7m for guix-patches@gnu.org; Fri, 21 Feb 2020 11:33:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j5BEd-0007GA-5r for guix-patches@gnu.org; Fri, 21 Feb 2020 11:33:03 -0500 Subject: [bug#39716] [PATCH 2/3] gnu: gnome-shell-extension-appindicator: Use the copy-build-system. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49321) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j5BEA-0000xd-86 for guix-patches@gnu.org; Fri, 21 Feb 2020 11:32:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j5BE7-0000GH-Qp for guix-patches@gnu.org; Fri, 21 Feb 2020 11:32:32 -0500 Received: from mailrelay.tugraz.at ([129.27.2.202]:29899) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j5BE7-0000Ey-Ax for guix-patches@gnu.org; Fri, 21 Feb 2020 11:32:31 -0500 Received: from localhost.localdomain (194-118-3-109.hdsl.highway.telekom.at [194.118.3.109]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 48PH6w6H9kz1DSPv for ; Fri, 21 Feb 2020 17:32:24 +0100 (CET) From: Leo Prikler Date: Fri, 21 Feb 2020 17:32:14 +0100 Message-Id: <20200221163215.11008-2-leo.prikler@student.tugraz.at> In-Reply-To: <20200221163215.11008-1-leo.prikler@student.tugraz.at> References: <20200221163215.11008-1-leo.prikler@student.tugraz.at> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 39716@debbugs.gnu.org * gnu/packages/gnome-xyz.scm (gnome-shell-extension-appindicator): Use the copy-build-system. --- gnu/packages/gnome-xyz.scm | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 882bd40c2e..0f945fc19d 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -129,19 +129,11 @@ the Obsidian icon theme.") (base32 "1fjhx23jqwv3d0smwhnjvc35gqhwk9p5f96ic22pfax653cn5vh8")) (file-name (git-file-name name version)))) - (build-system trivial-build-system) + (build-system copy-build-system) (arguments - '(#:modules ((guix build utils)) - #:builder - (begin - (use-modules (guix build utils)) - (let* ((source (assoc-ref %build-inputs "source")) - (install-dir (string-append (assoc-ref %outputs "out") - "/share/gnome-shell/extensio= ns" - "/appindicatorsupport@rgcjon= as.gmail.com"))) - (mkdir-p install-dir) - (copy-recursively source install-dir) - #t)))) + `(#:install-plan + '(("." ,(string-append "share/gnome-shell/extensions/" + "appindicatorsupport@rgcjonas.gmail.com"))= ))) (synopsis "Adds KStatusNotifierItem support to GNOME Shell") (description "This extension integrates Ubuntu AppIndicators and KStatusNotifierItems (KDE's successor of the systray) into --=20 2.25.1