blob: f613e7b5fce9dbbf8972d7ec358eb14926797b3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# old version (without -$pkgrel): ${1%%-*}
# new version (without -$pkgrel): ${2%%-*}
post_install() {
dkms install gslx680-acpi/${1%%-*}
echo "******************************************************"
echo "You have to install the firmware for your touchscreen."
echo "See https://github.com/onitake/gsl-firmware."
echo "******************************************************"
}
pre_upgrade() {
pre_remove ${2%%-*}
}
post_upgrade() {
post_install ${1%%-*}
}
pre_remove() {
dkms remove gslx680-acpi/${1%%-*} --all
}
|