diff options
author | Evgeny Pisemsky <mail@pisemsky.site> | 2024-09-20 14:41:51 +0300 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-09-29 23:44:59 +0800 |
commit | f19910c7784f5e70c861d8435a5853cd4066bc69 (patch) | |
tree | 791303e24e323d01aaefdd037353f9c699ca3472 | |
parent | 10fcdd9100a6c1fa7efcd61558dfcfa0c6b3ad67 (diff) | |
download | guix-f19910c7784f5e70c861d8435a5853cd4066bc69.tar guix-f19910c7784f5e70c861d8435a5853cd4066bc69.tar.gz |
gnu: screentest: Update to 3.0.
* gnu/packages/hardware.scm (screentest): Update to 3.0.
[build-system]: Switch to meson-build-system.
[native-inputs]: Add gettext-minimal. Remove autoconf intltool libtool
glib:bin automake.
[inputs]: Add gtk+. Remove gtk+-2.
Change-Id: I16fab59d7a25ac009094869ce1c174016ff06601
-rw-r--r-- | gnu/packages/hardware.scm | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index d8530f8705..2922b14a42 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -1366,7 +1366,7 @@ Simply put, it is a USB device whitelisting tool.") (define-public screentest (package (name "screentest") - (version "2.1") + (version "3.0") (source (origin (method git-fetch) @@ -1375,19 +1375,13 @@ Simply put, it is a USB device whitelisting tool.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0gv3xj9sbk1wsyijfw9xjnvy8pg7j4arjnma2r2kfi18qy32wd30")))) - (build-system gnu-build-system) - (inputs - (list glib gtk+-2)) - (native-inputs - (list autoconf - intltool - libtool - `(,glib "bin") - automake - pkg-config)) + (base32 "00422jbl8l10iw82m9m8sikaa9fwlnj7mgzvmnnazyq383aa1dkm")))) + (build-system meson-build-system) + (inputs (list glib gtk+)) + (native-inputs (list gettext-minimal pkg-config)) (synopsis "Simple screen testing tool") - (description "This is a program for testing the quality of CRT/LCD + (description + "This is a program for testing the quality of CRT/LCD screens. It displays various patterns and allows you to estimate the quality of your CRT/LCD monitor.") (home-page "https://github.com/TobiX/screentest") |