blob: 7b248575942e7fcb8c0d71c1ca108ffffadb88e3 (
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
88
89
90
91
|
# Maintainer: dreieck
# Contributor: jghodd
_pkgname=uvesafb-dkms
pkgname="${_pkgname}-git"
pkgver=1.0.4+r10.20210102.cada654
pkgrel=4
pkgdesc="uvesafb DKMS driver."
arch=('i686' 'x86_64')
url="https://github.com/jghodd/uvesafb-dkms"
license=('GPL2')
depends=(
'dkms>=2.2.0'
'v86d'
)
makedepends=(
'git'
)
provides=(
"${_pkgname}=${pkgver}"
'UVESAFB-MODULE'
)
conflicts=(
"${_pkgname}"
'UVESAFB-MODULE'
)
optdepends=(
"mkinitcpio-uvesafb: For mkinitcpio hook to load the 'uvesafb' module."
)
options=('!makeflags')
backup=(
'etc/modprobe.d/uvesafb.conf'
)
source=(
"${_pkgname}::git+https://github.com/jghodd/uvesafb-dkms.git"
'dkms.conf'
'modprobe_uvesafb.conf'
)
sha256sums=(
'SKIP'
'3afc65ee7ec66978910aae2d5247d81b64c07a5f0770e89c4ce359e1aac9c6b7'
'5b3805ccda2535b1737c838c17110cfa12b7537ed6ed5f33fba4751cdd7030bf'
)
prepare() {
cd "${srcdir}"
printf '%s\n' "${url}" > 'upstream.url'
}
pkgver() {
cd "${srcdir}/${_pkgname}"
_ver="$(git describe --tags | sed -E 's|^[vV]||' | tr '-' '.')"
_rev="$(git rev-list --count HEAD)"
_date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
_hash="$(git rev-parse --short HEAD)"
if [ -z "${_ver}" ]; then
error "Version could not be determined."
return 1
else
printf '%s' "${_ver}+r${_rev}.${_date}.${_hash}"
fi
}
package() {
cd "${srcdir}"
# Copy dkms.conf
install -D -v -m644 "dkms.conf" "${pkgdir}/usr/src/${_pkgname}-${pkgver}/dkms.conf"
# Set name and version
sed -e "s/@_PKGBASE@/${_pkgname}/" \
-e "s/@PKGVER@/${pkgver}/" \
-i "${pkgdir}/usr/src/${_pkgname}-${pkgver}/dkms.conf"
# Copy sources (including Makefile)
cp -rv "${_pkgname}/src" "${_pkgname}/Makefile" \
"${pkgdir}/usr/src/${_pkgname}-${pkgver}"/
# Install modprobe configuration
install -D -v -m644 "${srcdir}/modprobe_uvesafb.conf" "${pkgdir}/usr/share/doc/${_pkgname}/examples/etc/modprobe.d/uvesafb.conf"
install -D -v -m644 "${srcdir}/modprobe_uvesafb.conf" "${pkgdir}/etc/modprobe.d/uvesafb.conf"
# Install documentation
install -D -v -m644 "${srcdir}/${_pkgname}/README.md" "${pkgdir}/usr/share/doc/${_pkgname}/README.md"
install -D -v -m644 "${srcdir}/upstream.url" "${pkgdir}/usr/share/doc/${_pkgname}/upstream.url"
}
|