61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
# Build by running `snapcraft`.
|
|
|
|
# WARNING:
|
|
# Snapcraft uses caching for already build steps but it's buggy and can cause strange problems.
|
|
# Clean the cache by running `snapcraft clean`.
|
|
|
|
name: remote-touchpad
|
|
license: GPL-3.0+
|
|
grade: stable
|
|
adopt-info: remote-touchpad
|
|
|
|
base: core24
|
|
confinement: strict
|
|
|
|
platforms:
|
|
amd64:
|
|
arm64:
|
|
|
|
apps:
|
|
remote-touchpad:
|
|
command: bin/remote-touchpad
|
|
plugs:
|
|
- network-bind
|
|
- desktop
|
|
- x11
|
|
remote-touchpad-wait-on-error:
|
|
command: bin/remote-touchpad-wait-on-error
|
|
plugs:
|
|
- network-bind
|
|
- desktop
|
|
- x11
|
|
common-id: com.github.unrud.RemoteTouchpad
|
|
desktop: usr/share/applications/com.github.unrud.RemoteTouchpad.desktop
|
|
|
|
parts:
|
|
remote-touchpad:
|
|
plugin: go
|
|
go-buildtags:
|
|
- portal
|
|
- x11
|
|
source: .
|
|
source-type: git
|
|
build-snaps:
|
|
- go
|
|
build-packages:
|
|
- gcc
|
|
- libc6-dev
|
|
- libxt-dev
|
|
- libxrandr-dev
|
|
- libxtst-dev
|
|
stage-packages:
|
|
- libxt6
|
|
- libxrandr2
|
|
- libxtst6
|
|
override-build: |
|
|
craftctl default
|
|
install -Dm0755 -t "${CRAFT_PART_INSTALL}/bin" desktop/remote-touchpad-wait-on-error
|
|
install -Dm0644 -t "${CRAFT_PART_INSTALL}/usr/share/metainfo" desktop/com.github.unrud.RemoteTouchpad.metainfo.xml
|
|
install -Dm0644 -t "${CRAFT_PART_INSTALL}/usr/share/applications" desktop/com.github.unrud.RemoteTouchpad.desktop
|
|
install -Dm0644 -t "${CRAFT_PART_INSTALL}/usr/share/icons/hicolor/scalable/apps" desktop/com.github.unrud.RemoteTouchpad.svg
|
|
parse-info: [usr/share/metainfo/com.github.unrud.RemoteTouchpad.metainfo.xml]
|