summaryrefslogtreecommitdiff
path: root/community-testing/catalyst-dkms/catalyst.install
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/catalyst-dkms/catalyst.install')
-rw-r--r--community-testing/catalyst-dkms/catalyst.install18
1 files changed, 0 insertions, 18 deletions
diff --git a/community-testing/catalyst-dkms/catalyst.install b/community-testing/catalyst-dkms/catalyst.install
deleted file mode 100644
index 655468646..000000000
--- a/community-testing/catalyst-dkms/catalyst.install
+++ /dev/null
@@ -1,18 +0,0 @@
-post_install() {
- dkms install -m fglrx -v $1
-}
-
-pre_upgrade() {
- local curver=$2
- # $2 is unset due to a bug. Query current version using pacman as fallback
- [ -n "$curver" ] || curver=$(pacman -Qi catalyst-dkms | awk '/^Version/{print $3}')
- pre_remove $curver
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- dkms remove -m fglrx -v $1 --all
-}