You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository's GitHub Actions `build.yml` workflow publishes a flat Debian APT repository to the GitHub release tag `apt` whenever a version tag (`v*`) is built.
76
+
77
+
To install from that repository:
78
+
79
+
```bash
80
+
sudo mkdir -p /etc/apt/sources.list.d
81
+
cat <<'EOF' | sudo tee /etc/apt/sources.list.d/evdev-rce-github.list
82
+
deb [trusted=yes] https://github.com/bareboat-necessities/evdev-right-click-emulation/releases/download/apt/ ./
83
+
EOF
84
+
85
+
sudo apt-get update
86
+
sudo apt-get install evdev-rce
87
+
```
88
+
89
+
Notes:
90
+
91
+
- The repository is currently published as an unsigned flat repository, so the example uses `trusted=yes`.
92
+
- Packages are published to the `apt` release tag and include the generated `Packages`, `Packages.gz`, and `Release` metadata files alongside `.deb` artifacts.
0 commit comments