summarylogtreecommitdiffstats
path: root/evdi.install
blob: 89a76551a680f8bc3cca3fed8c701a7678e69ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# old version (without -$pkgrel): ${1%%-*}
# new version (without -$pkgrel): ${2%%-*}

post_install() {
    echo 'DKMS install...'
    dkms install evdi/${1%%-*}
}

pre_upgrade() {
    pre_remove ${2%%-*}
}

post_upgrade() {
    post_install ${1%%-*}
}

pre_remove() {
    echo 'DKMS remove...'
    dkms remove evdi/${1%%-*} --all
}