Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add evtest and mtview ports #435

Merged
merged 2 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions bootstrap.d/app-misc.y4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,42 @@ packages:
environ:
DESTDIR: '@THIS_COLLECT_DIR@'

- name: evtest
labels: [aarch64]
architecture: '@OPTION:arch@'
metadata:
summary: kernel input device debugging
description: evtest is a tool to print evdev kernel events. It reads directly from the kernel device and prints a device description and the events with the value and the symbolic name.
spdx: 'GPL-2.0-or-later'
website: 'https://gitlab.freedesktop.org/libevdev/evtest'
maintainer: "no92 <[email protected]>"
categories: ['app-misc']
source:
subdir: 'ports'
git: 'https://gitlab.freedesktop.org/libevdev/evtest.git'
tag: 'evtest-1.35'
version: '1.35'
tools_required:
- host-autoconf-v2.69
- host-automake-v1.15
regenerate:
- args: ['autoreconf', '-fvi']
tools_required:
- system-gcc
pkgs_required:
- mlibc
revision: 1
configure:
- args:
- '@THIS_SOURCE_DIR@/configure'
- '--host=@OPTION:arch-triple@'
- '--prefix=/usr'
build:
- args: ['make', '-j@PARALLELISM@']
- args: ['make', 'install']
environ:
DESTDIR: '@THIS_COLLECT_DIR@'

- name: sl
labels: [aarch64]
architecture: '@OPTION:arch@'
Expand Down
49 changes: 49 additions & 0 deletions bootstrap.d/x11-apps.y4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,55 @@ packages:
environ:
DESTDIR: '@THIS_COLLECT_DIR@'

- name: mtview
architecture: '@OPTION:arch@'
metadata:
summary: Multitouch Viewer
description: The mtview tool shows a graphical view of a kernel multitouch device. It reads events directly off the kernel device and is thus unaffected by any userspace processing.
spdx: 'GPL-3.0-or-later'
website: 'https://github.com/whot/mtview'
maintainer: "no92 <[email protected]>"
categories: ['x11-apps']
source:
subdir: 'ports'
git: 'https://github.com/whot/mtview'
branch: master
commit: '8a20a569664cf52db0ca688200747c148b80e967'
version: '1'
tools_required:
- host-autoconf-v2.69
- host-automake-v1.15
- host-libtool
- host-pkg-config
regenerate:
- args: ['./autogen.sh']
environ:
NOCONFIGURE: 'yes'
tools_required:
- system-gcc
- host-autoconf-v2.69
- host-automake-v1.15
- host-libtool
- host-pkg-config
pkgs_required:
- cairo
- libevdev
- libx11
- libxi
- mlibc
- mtdev
revision: 1
configure:
- args:
- '@THIS_SOURCE_DIR@/configure'
- '--host=@OPTION:arch-triple@'
- '--prefix=/usr'
build:
- args: ['make', '-j@PARALLELISM@']
- args: ['make', 'install']
environ:
DESTDIR: '@THIS_COLLECT_DIR@'

- name: xclock
labels: [aarch64, riscv64]
architecture: '@OPTION:arch@'
Expand Down
Loading