From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 2/3] gnu: Add moka-icon-theme. Date: Tue, 7 Jun 2016 08:35:54 -0400 Message-ID: <20160607123555.14504-2-dthompson2@worcester.edu> References: <20160607123555.14504-1-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAGEx-0004Vs-22 for guix-devel@gnu.org; Tue, 07 Jun 2016 08:36:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAGEv-0006jO-Kq for guix-devel@gnu.org; Tue, 07 Jun 2016 08:36:15 -0400 Received: from mail-qg0-x242.google.com ([2607:f8b0:400d:c04::242]:34632) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAGEv-0006jI-G7 for guix-devel@gnu.org; Tue, 07 Jun 2016 08:36:13 -0400 Received: by mail-qg0-x242.google.com with SMTP id z67so8932784qgz.1 for ; Tue, 07 Jun 2016 05:36:13 -0700 (PDT) In-Reply-To: <20160607123555.14504-1-dthompson2@worcester.edu> 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 * gnu/packages/gnome.scm (moka-icon-theme): New variable. --- gnu/packages/gnome.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 227dec1..2ce1f18 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5215,3 +5215,38 @@ like Gnome, Unity, Budgie, Pantheon, XFCE, Mate, etc.") (home-page "https://github.com/horst3180/arc-theme") ;; No "or later" language found. (license license:gpl3))) + +(define-public moka-icon-theme + (package + (name "moka-icon-theme") + (version "5.3.1") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/moka-project" + "/moka-icon-theme/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1lnk7p8dsd9xh6cgz5krvlcr457w8yl4m6p6s5c2g5narsjswzrm")))) + (build-system gnu-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-makefile.am + (lambda _ + (substitute* '("Makefile.am") + (("\\$\\(DESTDIR\\)/usr/share") + "$(datadir)")) + #t)) + (add-after 'patch-makefile.am 'bootstrap + (lambda _ + (zero? (system* "autoreconf" "-vif"))))))) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake))) + (synopsis "Moka icon theme") + (description "Moka is a stylized desktop icon set, designed to be clear, +simple and consistent.") + (home-page "http://snwh.org/moka") + (license license:gpl3+))) -- 2.8.3