blob: d5ec29a7e32244fe8446fd13afb126105918c49e (
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
36
|
# Maintainer: Derek J. Clark <derekjohn.clark@gmail.com>
pkgname=opengamepadui-git
_pkgbase=OpenGamepadUI
pkgver=0.35.7.r0.gdccb9670
pkgrel=1
pkgdesc="Open source game launcher"
arch=('x86_64')
url="https://github.com/ShadowBlip/OpenGamepadUI"
license=('GPL')
groups=()
depends=('glibc' 'gcc-libs' 'libx11' 'libxres' 'libxcb' 'libxext' 'libxau'
'libxdmcp' 'gamescope' 'vulkan-tools' 'mesa-utils' 'inputplumber'
)
optdepends=('firejail' 'bubblewrap' 'wireplumber' 'networkmanager' 'bluez' 'dbus' 'powerstation')
makedepends=('godot' 'rust' 'pkgconf' 'make' 'unzip' 'wget' 'git')
provides=('opengamepadui')
conflicts=('opengamepadui-bin')
source=("${_pkgbase}::git+https://github.com/ShadowBlip/${_pkgbase}.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${_pkgbase}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | cut -c 2-
}
build() {
cd "$srcdir/${_pkgbase}"
make build
}
package() {
options=('!strip')
cd "$srcdir/${_pkgbase}"
make install PREFIX="${pkgdir}/usr"
}
|