blob: ee19ef224e1c666fd6dce0bd7b496775efaeeb01 (
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
49
50
|
# Maintainer: Daniel Berjón <asuranceturix@gmail.com>
# Contributor: Aetf <aetf@unlimitedcodeworks.xyz>
# Contributor: juantascon <juantascon.aur@horlux.org>
# Contributor: Ilya Kuzmin <i.g.kuzmin.spb@gmail.com>
pkgname=hid-apple-patched-git-dkms
_pkgname=hid-apple-patched
pkgver=20230422.46f3457
pkgrel=2
url="https://github.com/free5lot/hid-apple-patched"
arch=('any')
license=('GPL2')
pkgdesc="Swaping the Fn and left Control keys and some other mapping tweaks on Macbook Pro and Apple keyboards (DKMS)"
depends=('dkms')
makedepends=('git')
install=hid-apple-patched-dkms.install
source=("git+https://github.com/free5lot/$_pkgname#branch=master"
"hid_apple.depmod"
"hid_apple.modprobe"
"dkms.conf")
sha256sums=('SKIP'
'4b94f1f55febddad5ff60a8918487b883ceadd4e6c3fb280e98e4e235cd09663'
'bf214ca80aa4abb6fe85c1108ea7c941684a5bc57891982b0aefafd5a6339a26'
'659d94d4b569efe2d3b5dfc4345417be516198423ecc113d7c31e682045db69f')
pkgver() {
cd "$srcdir"/"$_pkgname"
git log -1 --format=%cd.%h --date=short|tr -d -
}
package() {
## Copy sources
install -dm755 "${pkgdir}"/usr/src/${_pkgname}-${pkgver}/
install -Dm644 dkms.conf "${pkgdir}"/usr/src/${_pkgname}-${pkgver}/
install -Dm644 ${_pkgname}/{hid-apple.c,hid-ids.h,Makefile} "${pkgdir}"/usr/src/${_pkgname}-${pkgver}/
sed -e "s/@PKGNAME@/${_pkgname}/" \
-e "s/@PKGVER@/${pkgver}/" \
-i "${pkgdir}"/usr/src/${_pkgname}-${pkgver}/dkms.conf
install -Dm644 hid_apple.modprobe "${pkgdir}"/usr/lib/modprobe.d/hid_apple.conf
install -Dm644 hid_apple.depmod "${pkgdir}"/usr/lib/depmod.d/hid_apple.conf
}
|