mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: Add libticonv.
* gnu/packages/emulators.scm (libticonv): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
45c5851872
commit
98ff729e62
1 changed files with 40 additions and 0 deletions
|
@ -1420,6 +1420,46 @@ (define-public libticables2
|
||||||
"This package contains libticables, a library for operations on
|
"This package contains libticables, a library for operations on
|
||||||
@acronym{TI, Texas Instruments} calculator link cables.
|
@acronym{TI, Texas Instruments} calculator link cables.
|
||||||
|
|
||||||
|
This is a part of the TiLP project.")
|
||||||
|
(home-page "http://lpg.ticalc.org/prj_tilp/")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public libticonv
|
||||||
|
(package
|
||||||
|
(name "libticonv")
|
||||||
|
(version "1.1.5")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri "https://www.ticalc.org/pub/unix/tilibs.tar.gz")
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"07cfwwlidgx4fx88whnlch6y1342x16h15lkvkkdlp2y26sn2yxg"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
;; build fails with out --enable-iconv (...?)
|
||||||
|
`(#:configure-flags (list "--enable-iconv")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'unpack
|
||||||
|
(lambda* (#:key source #:allow-other-keys)
|
||||||
|
(invoke "tar" "xvkf" source)
|
||||||
|
(invoke "tar" "xvkf"
|
||||||
|
(string-append "tilibs2/libticonv-"
|
||||||
|
,version ".tar.bz2"))
|
||||||
|
(chdir (string-append "libticonv-" ,version))
|
||||||
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("glib" ,glib)))
|
||||||
|
(synopsis "Character conversion library for TI calculators")
|
||||||
|
(description
|
||||||
|
"This package contains libticonv, a library to support working with
|
||||||
|
@acronym{TI, Texas Instruments} calculator charsets.
|
||||||
|
|
||||||
This is a part of the TiLP project.")
|
This is a part of the TiLP project.")
|
||||||
(home-page "http://lpg.ticalc.org/prj_tilp/")
|
(home-page "http://lpg.ticalc.org/prj_tilp/")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue