mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add libuninameslist.
* gnu/packages/fontutils.scm (libuninameslist): New variable.
This commit is contained in:
parent
5277dbb062
commit
f945bf06af
1 changed files with 32 additions and 0 deletions
|
@ -23,6 +23,7 @@ (define-module (gnu packages fontutils)
|
|||
#:use-module (gnu packages ghostscript)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
|
@ -246,3 +247,34 @@ (define-public libspiro
|
|||
smooth contours with constant curvature at the spline joins.")
|
||||
(license license:gpl2+)
|
||||
(home-page "http://libspiro.sourceforge.net/")))
|
||||
|
||||
(define-public libuninameslist
|
||||
(package
|
||||
(name "libuninameslist")
|
||||
(version "0.4.20140731")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/fontforge/libuninameslist/"
|
||||
"archive/" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"016zxffpc8iwpxxmnjkdirn6dsbcvdb2wjdrp123sf79f4nsynyj"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs `(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)
|
||||
("libtool-bin" ,libtool "bin")))
|
||||
(arguments
|
||||
`(#:phases (alist-cons-before
|
||||
'configure 'bootstrap
|
||||
(lambda _
|
||||
(zero? (system* "autoreconf" "-vi")))
|
||||
%standard-phases)))
|
||||
(synopsis "Unicode names and annotation list")
|
||||
(description
|
||||
"LibUniNamesList holds www.unicode.org Nameslist.txt data which can be
|
||||
useful for programs that need Unicode \"Names\", \"Annotations\", and block
|
||||
definitions.")
|
||||
(license license:gpl2)
|
||||
(home-page "https://github.com/fontforge/libuninameslist")))
|
||||
|
|
Loading…
Reference in a new issue