blob: 4a55d72e15ea3603b7098d0552fa1ed19567347c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Maintainer: Maximilian Luz <luzmaximilian@gmail.com>
_pkgname='surface-control'
pkgname="${_pkgname}-bin"
pkgver=0.4.7
pkgrel=1
_pkgrel=1
pkgdesc='Control various aspects of Microsoft Surface devices from the Command-Line'
url='https://github.com/linux-surface/surface-control'
license=('MIT')
arch=('x86_64')
depends=('gcc-libs' 'systemd-libs')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=(
"https://github.com/linux-surface/surface-control/releases/download/v${pkgver}-${_pkgrel}/surface-control-${pkgver}.${_pkgrel}-${CARCH}.bin.tar.xz"
)
sha256sums=('5c28368e3b54cfac8e4fcccdd523345cca321d9a1a4b56ebbed9fb455672742c')
package() {
install -D -m755 "bin/surface" "$pkgdir/usr/bin/surface"
# completion files
install -D -m644 "shell-completions/surface.bash" "$pkgdir/usr/share/bash-completion/completions/surface"
install -D -m644 "shell-completions/surface.zsh" "$pkgdir/usr/share/zsh/site-functions/_surface"
install -D -m644 "shell-completions/surface.fish" "$pkgdir/usr/share/fish/vendor_completions.d/surface.fish"
# license
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/surface-control/LICENSE"
}
|