mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: libevdi: Inherit from evdi.
* gnu/packages/linux.scm (libevdi)[inherit]: …from evdi. [version, source, home-page]: Likewise.
This commit is contained in:
parent
6f9d658e63
commit
c507f15d48
1 changed files with 27 additions and 37 deletions
|
@ -1548,7 +1548,7 @@ (define-public tuxedo-keyboard
|
||||||
(define-public evdi
|
(define-public evdi
|
||||||
(package
|
(package
|
||||||
(name "evdi")
|
(name "evdi")
|
||||||
(version "1.14.1")
|
(version "1.14.1") ;inherited by libevdi
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1573,6 +1573,32 @@ (define-public evdi
|
||||||
take control over what happens with the image.")
|
take control over what happens with the image.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public libevdi
|
||||||
|
(package
|
||||||
|
(inherit evdi)
|
||||||
|
(name "libevdi")
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:tests? #f ;no test suite
|
||||||
|
#:make-flags #~'("CC=gcc")
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(delete 'configure)
|
||||||
|
(add-after 'unpack 'chdir
|
||||||
|
(lambda _
|
||||||
|
(chdir "library")))
|
||||||
|
(replace 'install
|
||||||
|
(lambda* _
|
||||||
|
(let* ((lib (string-append #$output "/lib")))
|
||||||
|
(mkdir-p lib)
|
||||||
|
(install-file "libevdi.so" lib)))))))
|
||||||
|
(inputs (list libdrm))
|
||||||
|
(synopsis "User-space EVDI library")
|
||||||
|
(description
|
||||||
|
"Libevdi is a library that gives applications easy access to
|
||||||
|
@acronym{EVDI, Extensible Virtual Display Interface} devices on
|
||||||
|
various operating systems.")
|
||||||
|
(license license:lgpl2.1)))
|
||||||
|
|
||||||
(define-public ec
|
(define-public ec
|
||||||
(package
|
(package
|
||||||
(name "ec")
|
(name "ec")
|
||||||
|
@ -9974,42 +10000,6 @@ (define-public libtree
|
||||||
libraries are found or why they cannot be located.")
|
libraries are found or why they cannot be located.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public libevdi
|
|
||||||
(package
|
|
||||||
(name "libevdi")
|
|
||||||
(version "1.14.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/DisplayLink/evdi")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "0vfbph6bdb206zgdp0bvpqck2zvkx1367xdxbavv41qsmgkxhvbs"))))
|
|
||||||
(build-system gnu-build-system)
|
|
||||||
(inputs (list libdrm))
|
|
||||||
(arguments
|
|
||||||
(list #:tests? #f ;no test suite
|
|
||||||
#:make-flags #~'("CC=gcc")
|
|
||||||
#:phases #~(modify-phases %standard-phases
|
|
||||||
(delete 'configure)
|
|
||||||
(add-after 'unpack 'chdir
|
|
||||||
(lambda _
|
|
||||||
(chdir "library")))
|
|
||||||
(replace 'install
|
|
||||||
(lambda* _
|
|
||||||
(let* ((lib (string-append #$output "/lib")))
|
|
||||||
(mkdir-p lib)
|
|
||||||
(install-file "libevdi.so" lib)))))))
|
|
||||||
(home-page "https://github.com/DisplayLink/evdi")
|
|
||||||
(synopsis "User-space EVDI library")
|
|
||||||
(description
|
|
||||||
"Libevdi is a library that gives applications easy access to
|
|
||||||
@acronym{EVDI, Extensible Virtual Display Interface} devices on
|
|
||||||
various operating systems.")
|
|
||||||
(license license:lgpl2.1)))
|
|
||||||
|
|
||||||
(define-public touchegg
|
(define-public touchegg
|
||||||
(package
|
(package
|
||||||
(name "touchegg")
|
(name "touchegg")
|
||||||
|
|
Loading…
Reference in a new issue