summarylogtreecommitdiffstats
path: root/sixfireusb.install
blob: ccd692eabf8072ad2b36e326050ffb0b4dcb976f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
post_install() {
    dkms install -m sixfireusb -v ${1%%-*}
}

pre_upgrade() {
    local curver=${2%%-*}
    # $2 is unset due to a bug. See, https://bugs.archlinux.org/task/32278
    # Query current version using pacman as fallback
    [ -n "$curver" ] || curver=$(pacman -Q sixfireusb-dkms | cut -d' ' -f2)
    pre_remove $curver
}

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

pre_remove() {
    dkms remove -m sixfireusb -v ${1%%-*} --all
}