blob: 42929a63f7608a1407bf5ae4434b09c30dc83d91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
all_off="$(tput sgr0)"
bold="${all_off}$(tput bold)"
blue="${bold}$(tput setaf 4)"
yellow="${bold}$(tput setaf 3)"
msg_blue() {
printf "${blue}==>${bold} $1${all_off}\n"
}
note() {
printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
}
_update() {
msg_blue "Updating desktop MIME database..."
update-desktop-database -q
msg_blue "Updating icon cache..."
gtk-update-icon-cache -f -t -q /usr/share/icons/hicolor/
}
post_install() {
_update
usr/bin/glib-compile-schemas usr/share/glib-2.0/schemas
msg_blue "This package is now obsolete due to an error in the vala compiler that prevents us from continuing the development. The project is currently being ported to C and being also rebranded so that the development may continue. New package's info comming soon..."
}
post_upgrade() {
post_install $1
}
post_remove() {
post_install $1
}
|