gnu: ftgl: Update to 2.4.0.
* gnu/packages/gl.scm (ftgl): Update to 2.4.0. [home-page]: Change to maintained fork at <https://github.com/frankheckenbach/ftgl>. [source]: Change to GIT-FETCH. [native-inputs]: Add AUTOCONF, AUTOMAKE and LIBTOOL.
This commit is contained in:
parent
6a2e54236e
commit
c7e31cde04
|
@ -149,15 +149,16 @@ the X-Consortium license.")
|
||||||
(define-public ftgl
|
(define-public ftgl
|
||||||
(package
|
(package
|
||||||
(name "ftgl")
|
(name "ftgl")
|
||||||
(version "2.1.3-rc5")
|
(version "2.4.0")
|
||||||
|
(home-page "https://github.com/frankheckenbach/ftgl")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference (url home-page)
|
||||||
"mirror://sourceforge/ftgl/FTGL%20Source/2.1.3~rc5/"
|
(commit (string-append "v" version))))
|
||||||
"ftgl-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0nsn4s6vnv5xcgxcw6q031amvh2zfj2smy1r5mbnjj2548hxcn2l"))))
|
"0zjs1h9w30gajq9lndzvjsa26rsmr1081lb1fbpbj10yhcdcsc79"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--disable-static")))
|
`(#:configure-flags '("--disable-static")))
|
||||||
|
@ -167,8 +168,10 @@ the X-Consortium license.")
|
||||||
("mesa" ,mesa)
|
("mesa" ,mesa)
|
||||||
("glu" ,glu)))
|
("glu" ,glu)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)
|
||||||
(home-page "http://ftgl.sourceforge.net")
|
("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)))
|
||||||
(synopsis "Font rendering library for OpenGL applications")
|
(synopsis "Font rendering library for OpenGL applications")
|
||||||
(description
|
(description
|
||||||
"FTGL is a font rendering library for OpenGL applications. Supported
|
"FTGL is a font rendering library for OpenGL applications. Supported
|
||||||
|
|
Loading…
Reference in New Issue