mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add fontobene-qt.
* gnu/packages/fontutils.scm (fontobene-qt): New variable. (fontobene-qt5): Deprecate package in favor of fontobene-qt. Change-Id: I2177ff292a1b71d212fb0b03d772808d7525b039
This commit is contained in:
parent
aabdbc8841
commit
24154bf440
1 changed files with 12 additions and 9 deletions
|
@ -1007,20 +1007,20 @@ (define-public python-ufonormalizer
|
|||
@end itemize")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public fontobene-qt5
|
||||
(define-public fontobene-qt
|
||||
(package
|
||||
(name "fontobene-qt5")
|
||||
(version "0.2.0")
|
||||
(name "fontobene-qt")
|
||||
(version "1.0.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/fontobene/fontobene-qt5")
|
||||
(url "https://github.com/fontobene/fontobene-qt")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0gy3sfraf23k7dm4ha8nqpd6madzk0zmxkcb204micyn5b5l8ljg"))))
|
||||
(inputs (list qtbase-5))
|
||||
"098ys33l563hjyzm6azzw8kmlybja374vacakczwhh2k3ifn37r9"))))
|
||||
(inputs (list qtbase))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -1028,14 +1028,17 @@ (define-public fontobene-qt5
|
|||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "./tests/fontobene-qt5-tests")))))))
|
||||
(invoke "./tests/fontobene-qt-tests")))))))
|
||||
(home-page "https://github.com/fontobene/fontobene-qt5")
|
||||
(synopsis "Parser for FontoBene stroke fonts")
|
||||
(description "FontoBene-Qt5 is a header-only library to parse FontoBene
|
||||
stroke fonts with C++11/Qt5.")
|
||||
(description "FontoBene-Qt is a header-only library to parse FontoBene
|
||||
stroke fonts with C++11/Qt.")
|
||||
;; Dual-licensed, either license applies.
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public fontobene-qt5
|
||||
(deprecated-package "fontobene-qt5" fontobene-qt))
|
||||
|
||||
(define-public ttfautohint
|
||||
(package
|
||||
(name "ttfautohint")
|
||||
|
|
Loading…
Reference in a new issue