gnu: Add libdatrie.
* gnu/packages/gtk.scm (libdatrie): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
3f03bd3728
commit
20842b795e
@ -61,6 +61,7 @@
|
||||
#:use-module (gnu packages check)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages docbook)
|
||||
#:use-module (gnu packages documentation)
|
||||
#:use-module (gnu packages enchant)
|
||||
#:use-module (gnu packages fontutils)
|
||||
#:use-module (gnu packages freedesktop)
|
||||
@ -224,6 +225,35 @@ affine transformation (scale, rotation, shear, etc.).")
|
||||
"See 'COPYING' in the distribution."))
|
||||
(home-page "https://www.freedesktop.org/wiki/Software/HarfBuzz/")))
|
||||
|
||||
(define-public libdatrie
|
||||
(package
|
||||
(name "libdatrie")
|
||||
(version "0.2.11")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "https://linux.thai.net/pub/ThaiLinux/software/"
|
||||
"libthai/libdatrie-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "0jz9k0dd8jim4iyk5xrhkkdm4zq2ly6aw317ydjss44ymg97nz2l"))))
|
||||
(build-system gnu-build-system)
|
||||
(outputs '("out" "doc"))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list
|
||||
(string-append "--with-html-docdir="
|
||||
(assoc-ref %outputs "doc")
|
||||
"/share/doc/datrie/html"))))
|
||||
(native-inputs
|
||||
`(("doxygen" ,doxygen)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(synopsis "Double-Array Trie Library")
|
||||
(description "Libdatrie is an implementation of double-array structure for
|
||||
representing trie. Trie is a kind of digital search tree.")
|
||||
(home-page "https://linux.thai.net/~thep/datrie/datrie.html")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public pango
|
||||
(package
|
||||
(name "pango")
|
||||
|
Loading…
x
Reference in New Issue
Block a user