blob: 72dc022056e64e7cea4c1e913c784403b34aa401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install() {
echo "
>>> Copy the /usr/share/vim/vimfiles/eclim/resources
>>> directory to ~/.eclim/resources
"
# rebuild the vim documentation tags
vim -e -u NONE --cmd "helptags /usr/share/vim/vimfiles/eclim/doc/" --cmd quit
}
post_upgrade() {
echo "
>>> Copy the /usr/share/vim/vimfiles/eclim/resources
>>> directory to ~/.eclim/resources
"
}
post_remove() {
/bin/true
}
|