blob: 14baf2e38a4b6917f18456273e0cda31c6a1b54f (
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
37
38
39
40
41
42
43
44
45
46
47
48
|
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>
pkgname=qt5-gamepad-git
pkgver=5.15.9.r0.g7c05744
pkgrel=1
pkgdesc="Qt5 gamepad module"
arch=('i686' 'x86_64')
url="https://www.qt.io/"
license=('GPL' 'LGPL')
depends=('qt5-declarative')
makedepends=('git')
provides=("qt5-gamepad=$pkgver")
conflicts=('qt5-gamepad')
source=("git+https://code.qt.io/qt/qtgamepad.git#branch=5.15")
sha256sums=('SKIP')
prepare() {
cd "$srcdir"
mkdir -p "_build"
}
pkgver() {
cd "qtgamepad"
_tag=$(git tag -l --sort -creatordate | grep -E '^v5\.15[0-9\.]+' | head -n1)
_rev=$(git rev-list --count $_tag..HEAD)
_hash=$(git rev-parse --short HEAD)
printf "%s.r%s.g%s" "$_tag" "$_rev" "$_hash" | sed 's/^v//;s/-lts-lgpl//'
}
build() {
cd "_build"
qmake ../qtgamepad
make
}
package() {
cd "_build"
make INSTALL_ROOT="$pkgdir" install
# Drop QMAKE_PRL_BUILD_DIR because reference the build dir
find "$pkgdir/usr/lib" -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
}
|