diff options
Diffstat (limited to 'community/lat/lat.install')
-rw-r--r-- | community/lat/lat.install | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/community/lat/lat.install b/community/lat/lat.install deleted file mode 100644 index 70bbdd964..000000000 --- a/community/lat/lat.install +++ /dev/null @@ -1,26 +0,0 @@ -pkgname=lat - -post_install() { - scrolls=(`pacman -Ql $pkgname | grep 'share/omf/.*\.omf$' | awk '{ print $2 }'`) - - for scroll in "${scrolls[@]}" ; do - scrollkeeper-install -q -p var/lib/scrollkeeper "$scroll" - done -} - -pre_upgrade() { - pre_remove $1 -} - -post_upgrade() { - post_install $1 -} - -pre_remove() { - scrolls=(`pacman -Ql $pkgname | grep 'share/omf/.*\.omf$' | awk '{ print $2 }'`) - - for scroll in "${scrolls[@]}" ; do - scrollkeeper-uninstall -q -p var/lib/scrollkeeper "$scroll" - done -} - |