blob: b35f50a1d6148890019e891fe3c2eb5a48a0508b (
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: Tomasz Pakula <forest10pl@gmail.com>
_reponame=universal-pidff
pkgname=universal-pidff-dkms-git
pkgver=0.0.4.r40.g5416f53
pkgrel=1
pkgdesc="Universal FFB Driver for Moza/Cammus/VRS and more"
arch=('x86_64')
url="https://github.com/JacKeTUs/universal-pidff"
license=('GPL2')
depends=(dkms)
makedepends=(
git
gcc
glibc
)
source=(
git+https://github.com/JacKeTUs/universal-pidff
)
sha256sums=(
'SKIP'
)
pkgver() {
cd "$srcdir/$_reponame"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd "$srcdir/$_reponame"
find . -type f \( -name 'dkms.conf' -o -name '*.c' \) -exec sed -i "s/#VERSION#/$pkgver/" {} +
echo "* Copying module into /usr/src..."
install -dm755 "${pkgdir}/usr/src/universal-pidff-${pkgver}"
cp -r ${srcdir}/$_reponame/* "${pkgdir}/usr/src/universal-pidff-${pkgver}"
}
|