summarylogtreecommitdiffstats
path: root/google-chrome.install
diff options
context:
space:
mode:
authorDet2015-06-14 04:13:27 +0300
committerDet2015-06-14 04:14:15 +0300
commit358893f10db42522ca2460f5d371f96cfe0c271c (patch)
tree65d186c6f37f0e96d8b8d29b65972e5c79e9be17 /google-chrome.install
downloadaur-358893f10db42522ca2460f5d371f96cfe0c271c.tar.gz
Initial import: 43.0.2357.125-1
Diffstat (limited to 'google-chrome.install')
-rw-r--r--google-chrome.install35
1 files changed, 35 insertions, 0 deletions
diff --git a/google-chrome.install b/google-chrome.install
new file mode 100644
index 000000000000..57ef900c1cc1
--- /dev/null
+++ b/google-chrome.install
@@ -0,0 +1,35 @@
+# Colored makepkg-like functions
+msg_blue() {
+ printf "${blue}==>${bold} $1${all_off}\n"
+}
+
+note() {
+ printf "${blue}==>${yellow} NOTE:${bold} $1${all_off}\n"
+}
+
+all_off="$(tput sgr0)"
+bold="${all_off}$(tput bold)"
+blue="${bold}$(tput setaf 4)"
+yellow="${bold}$(tput setaf 3)"
+
+_update() {
+ msg_blue "Updating desktop MIME database..."
+ update-desktop-database -q
+ msg_blue "Updating icon cache.."
+ xdg-icon-resource forceupdate --theme hicolor &>/dev/null
+}
+
+post_install() {
+ _update
+ note "The launcher is called: 'google-chrome-stable'"
+}
+
+
+post_upgrade() {
+ post_install
+}
+
+
+post_remove() {
+ _update
+} \ No newline at end of file