blob: fbdfa31ba67c655b64b6b78786f9d0e4ebee368b (
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
|
# Maintainer: Christopher Torres <christopher dot torres at azgstudio dot com>
pkgname=vpc-shift-tool-git
pkgver=1.0.r1.g7c57d73
pkgrel=1
pkgdesc="Tool for replicating VIRPIL joystick states from one device to another."
arch=('i686' 'x86_64')
url="https://github.com/RavenX8/vpc-shift-tool.git"
license=('GPL3')
depends=('libusb')
makedepends=('git' 'cargo')
provides=("vpc-shift-tool")
conflicts=("vpc-shift-tool")
source=("git+$url")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/vpc-shift-tool"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "$srcdir/vpc-shift-tool"
}
build() {
cd "$srcdir/vpc-shift-tool"
make
}
package() {
cd "$srcdir/vpc-shift-tool"
make DESTDIR="$pkgdir" install
}
|