updated on Wed Jan 11 12:00:27 UTC 2012
[aur-mirror.git] / decklink / decklink.install
blobea390c149e02cd9577686cfdcf3ea4b277ff0c2b
1 ## arg 1:  the new package version
2 pre_install() {
3   true
6 ## arg 1:  the new package version
7 post_install() {
8   ldconfig
9   cd /usr/src/desktopvideo-${1%%-*}
10   make
11   install -D -m 0644 blackmagic.ko /lib/modules/$(uname -r)/kernel/drivers
12   make clean
13   depmod -a
14   modprobe blackmagic
17 ## arg 1:  the new package version
18 ## arg 2:  the old package version
19 pre_upgrade() {
20   lsmod | grep blackmagic && modprobe -r blackmagic
21   rm -f "/lib/modules/*/kernel/drivers/blackmagic.ko"
24 ## arg 1:  the new package version
25 ## arg 2:  the old package version
26 post_upgrade() {
27   post_install $1
30 ## arg 1:  the old package version
31 pre_remove() {
32   lsmod | grep blackmagic && modprobe -r blackmagic
35 ## arg 1:  the old package version
36 post_remove() {
37   rm -f "/lib/modules/*/kernel/drivers/blackmagic.ko"
40 # vim:set ts=2 sw=2 et: