mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add libticables2.
* gnu/packages/emulators.scm (libticables2): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
b129b43475
commit
45c5851872
1 changed files with 44 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
||||||
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2019 David Wilson <david@daviwil.com>
|
;;; Copyright © 2019 David Wilson <david@daviwil.com>
|
||||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||||
|
;;; Copyright © 2020 Christopher Howard <christopher@librehacker.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -39,6 +40,7 @@ (define-module (gnu packages emulators)
|
||||||
#:use-module (gnu packages algebra)
|
#:use-module (gnu packages algebra)
|
||||||
#:use-module (gnu packages assembly)
|
#:use-module (gnu packages assembly)
|
||||||
#:use-module (gnu packages audio)
|
#:use-module (gnu packages audio)
|
||||||
|
#:use-module (gnu packages autogen)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages boost)
|
#:use-module (gnu packages boost)
|
||||||
|
@ -1380,6 +1382,48 @@ (define-public scummvm
|
||||||
play them on systems for which they were never designed!")
|
play them on systems for which they were never designed!")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public libticables2
|
||||||
|
(package
|
||||||
|
(name "libticables2")
|
||||||
|
(version "1.3.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
|
||||||
|
`(#:configure-flags (list "--enable-libusb10")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'unpack
|
||||||
|
(lambda* (#:key source #:allow-other-keys)
|
||||||
|
(invoke "tar" "xvkf" source)
|
||||||
|
(invoke "tar" "xvkf"
|
||||||
|
(string-append "tilibs2/libticables2-"
|
||||||
|
,version ".tar.bz2"))
|
||||||
|
(chdir (string-append "libticables2-" ,version))
|
||||||
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("autogen" ,autogen)
|
||||||
|
("automake" ,automake)
|
||||||
|
("gettext" ,gnu-gettext)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("glib" ,glib)
|
||||||
|
("libusb" ,libusb)))
|
||||||
|
(synopsis "Link cable library for TI calculators")
|
||||||
|
(description
|
||||||
|
"This package contains libticables, a library for operations on
|
||||||
|
@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 mame
|
(define-public mame
|
||||||
(package
|
(package
|
||||||
(name "mame")
|
(name "mame")
|
||||||
|
|
Loading…
Reference in a new issue