mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
gnu: Add libotf.
* gnu/packages/fontutils.scm (libotf): New variable.
This commit is contained in:
parent
4e58a402ff
commit
6ef0ec7600
1 changed files with 22 additions and 0 deletions
|
@ -259,6 +259,28 @@ (define-public potrace
|
||||||
(license license:gpl2+)
|
(license license:gpl2+)
|
||||||
(home-page "http://potrace.sourceforge.net/")))
|
(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)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("freetype" ,freetype)))
|
||||||
|
(home-page "http://www.nongnu.org/m17n/")
|
||||||
|
(synopsis "Library for handling OpenType Font")
|
||||||
|
(description "This library can read Open Type Layout Tables from an 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
|
(define-public libspiro
|
||||||
(package
|
(package
|
||||||
(name "libspiro")
|
(name "libspiro")
|
||||||
|
|
Loading…
Reference in a new issue