From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: [PATCH] Add libotf. Date: Fri, 19 Feb 2016 11:04:19 +0100 Message-ID: <87fuwpf23g.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58812) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWhvI-0000t7-R4 for guix-devel@gnu.org; Fri, 19 Feb 2016 05:04:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWhvD-0007kY-R4 for guix-devel@gnu.org; Fri, 19 Feb 2016 05:04:28 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:43988) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWhvD-0007kU-NO for guix-devel@gnu.org; Fri, 19 Feb 2016 05:04:23 -0500 Received: from ip-80-113-14-101.ip.prioritytelecom.net ([80.113.14.101]:63806 helo=roel-tp) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1aWhvD-0003dt-2T for guix-devel@gnu.org; Fri, 19 Feb 2016 05:04:23 -0500 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 --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-libotf.patch >From 64cfdae64cfe9af4ff162935edd4e208a0f5afc1 Mon Sep 17 00:00:00 2001 From: Roel Janssen Date: Fri, 19 Feb 2016 11:00:06 +0100 Subject: [PATCH] gnu: Add libotf. * gnu/packages/fontutils.scm (libotf): New variable. --- gnu/packages/fontutils.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 7b5b330..5cd7c56 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -259,6 +259,27 @@ resolution.") (license license:gpl2+) (home-page "http://potrace.sourceforge.net/"))) +(define-public libotf + (package + (name "libotf") + (version "0.9.13") + (source (origin + (method url-fetch) + (uri (string-append "http://download.savannah.gnu.org/releases/m17n/libotf-" + version ".tar.gz")) + (sha256 + (base32 "0239zvfan56w7vrppriwy77fzb10ag9llaz15nsraps2a2x6di3v")))) + (build-system gnu-build-system) + (native-inputs + `(("freetype" ,freetype))) + (home-page "http://www.nongnu.org/m17n/") + (synopsis "A Library for handling OpenType Font") + (description "The library can read Open Type Layout Tables from OTF file. +Currently these tables are supported; head, name, cmap, GDEF, GSUB, and GPOS. +It can convert a Unicode character sequence to a glyph code sequence by using +the above tables.") + (license license:lgpl2.0+))) + (define-public libspiro (package (name "libspiro") -- 2.5.0 --=-=-= Content-Type: text/plain Dear list, I'd like to add libotf, so here's a patch. Feedback is always welcome. Kind regards, Roel --=-=-=--