all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Lprndn <guix@lprndn.info>
To: 33401@debbugs.gnu.org
Subject: [bug#33401] [PATCH] gnu: Add font-manager.
Date: Thu, 15 Nov 2018 22:07:19 +0100	[thread overview]
Message-ID: <cucmuqaf15w.fsf@Vague.i-did-not-set--mail-host-address--so-tickle-me> (raw)

---
 gnu/packages/fontutils.scm | 50 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 09ba9b7e4..01073afeb 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -42,7 +42,10 @@
   #:use-module (gnu packages gperf)
   #:use-module (gnu packages xorg)
   #:use-module (gnu packages gtk)
+  #:use-module (gnu packages gnome)
   #:use-module (gnu packages xml)
+  #:use-module (gnu packages databases)
+  #:use-module (gnu packages file)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
@@ -619,6 +622,53 @@ generate bitmaps.")
    (license license:gpl3+)
    (home-page "https://fontforge.github.io/en-US/")))
+(define-public font-manager
+  (package
+   (name "font-manager")
+   (version "0.7.3.1")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append
+                  "https://github.com/FontManager/master/releases/download/"
+                  version "/" name "-0.7.3.tar.bz2"))
+            (sha256
+             (base32 "07316js0ggdaf834ms9f5g64n95kwihkpvs3556s4xakff60fdx0"))))
+   (build-system gnu-build-system)
+   (arguments
+    `(#:configure-flags
+      '("--with-file-roller")
+      #:phases
+      (modify-phases %standard-phases
+        (add-after 'unpack 'noconfigure
+          (lambda _
+            (setenv "NOCONFIGURE" "true")
+            #t)))))
+   (native-inputs
+    `(("pkg-config" ,pkg-config)
+      ("file" ,file)
+      ("vala" ,vala)
+      ("yelp-tools" ,yelp-tools)
+      ("intltool" ,intltool)
+      ("itstool" ,itstool)
+      ("glib" ,glib "bin")))
+   (inputs
+    `(("file-roller" ,file-roller)
+      ("libxml2" ,libxml2)
+      ("json-glib" ,json-glib)
+      ("sqlite" ,sqlite)
+      ("librsvg" ,librsvg)
+      ("gtk+" ,gtk+)
+      ("gucharmap" ,gucharmap)
+      ("libgee" ,libgee)))
+      (home-page "https://fontmanager.github.io/")
+      (synopsis "Simple font management for GTK+ desktop environments")
+      (description "Font Manager is intended to provide a way for average users to
+easily manage desktop fonts, without having to resort to command
+line tools or editing configuration files by hand.
+While designed primarily with the Gnome Desktop Environment in mind, it should
+work well with other Gtk+ desktop environments.")
+      (license license:gpl3+)))
+
 (define-public python2-ufolib
   (package
     (name "python2-ufolib")
-- 
2.19.1

             reply	other threads:[~2018-11-15 21:21 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-15 21:07 Lprndn [this message]
2020-04-02 16:04 ` bug#33401: [PATCH] gnu: Add font-manager Marius Bakke

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cucmuqaf15w.fsf@Vague.i-did-not-set--mail-host-address--so-tickle-me \
    --to=guix@lprndn.info \
    --cc=33401@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.