blob: 6728d34c6c0a53de69b3a4f65d92e13fdef473be (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
# Maintainer: Varun Garg <connect at varun dot gg>
# Contributors: Chris Severance <aur.severach aATt spamgourmet dott com>, ajs124
# Tested with Kernel 6.2.6-zen1-1-zen, ThinkPad Hybrid USB-C with USB-A Dock
pkgname='evdi-compat-git'
src_pkgname='evdi-git'
pkgver=1.14.03.r0.g19476e7
_pkgver="${pkgver%%.r*}"
pkgrel=1
pkgdesc='kernel module for DisplayLink driver, aimed at compatibility with DisplayLink package and Official kernels'
arch=('i686' 'x86_64')
url='https://github.com/Varun-garg/evdi-compat'
license=('GPL')
depends=('dkms')
makedepends=('git' 'libdrm')
makedepends+=('linux-headers')
provides=("evdi=${_pkgver}")
conflicts=('evdi' 'evdi-git')
_srcdir="${pkgname%-git}"
source=(
'git+https://github.com/Varun-garg/evdi-compat'
)
source[0]+='#branch=devel'
md5sums=('SKIP')
sha256sums=('SKIP')
pkgver() {
cd "${_srcdir}"
local _modver _rev
_rev="$(git describe --long --tags | sed -e 's/^v//' -e 's/\([^-]*-g\)/r\1/' -e 's/-/./g')"
if [ -z "${_modver:-}" ]; then
printf '%s\n' "${_rev}"
else
printf '%s.r%s\n' "${_modver}" "${_rev##*.r}"
fi
}
prepare() {
cd "${_srcdir}"
local _src
for _src in "${source[@]%%::*}"; do
_src="${_src##*/}"
if [[ "${_src}" = *.patch ]]; then
msg2 "Patch ${_src}"
patch -Np1 -i "../${_src}"
fi
done
sed -e 's:-Werror::g' -i 'Makefile'
}
build() {
cd "${_srcdir}"
# DKMS builds are hard to debug. We can build it here to debug the errors.
if :; then
# We only need to build the library in this step, dmks will build the module
cd 'library'
fi
CFLAGS="${CFLAGS/-fno-plt/}"
make
}
package() {
cd "${_srcdir}"
install -Dpm755 "library/lib${src_pkgname%-git}.so"* -t "${pkgdir}/usr/lib/"
rm "${pkgdir}/usr/lib/libevdi.so.1" # hack to remove bad lib, don't know where it was coming from
if ! :; then
pushd "${pkgdir}/usr/lib/" > /dev/null
local _libs=(*.so.*)
if [ "${#_libs[@]}" -ne 1 ]; then
echo "Too many libs"
false
fi
_libs="${_libs[0]}"
local _libase="${_libs%.so*}.so"
ln -sf "${_libs}" "${_libase}"
ln -sf "${_libs}" "${_libase}.0" # bad soname
popd > /dev/null
fi
local _DKMS="${pkgdir}/usr/src/${src_pkgname%-git}-${_pkgver}"
install -Dpm644 module/* -t "${_DKMS}/"
make -j1 -C "${_DKMS}" clean
rm -f "${_DKMS}/evdi.mod"
}
|