summarylogtreecommitdiffstats
path: root/google-chrome-dev.install
diff options
context:
space:
mode:
authorDet2015-06-14 04:13:27 +0300
committerDet2015-06-14 04:14:15 +0300
commit1f5057a72039e6a3cca602d3b7bd53f36acc7f8f (patch)
tree0c09322de566a71ac155cce3bc253112e873345c /google-chrome-dev.install
downloadaur-1f5057a72039e6a3cca602d3b7bd53f36acc7f8f.tar.gz
Initial import: 45.0.2427.7-1
Diffstat (limited to 'google-chrome-dev.install')
-rw-r--r--google-chrome-dev.install35
1 files changed, 35 insertions, 0 deletions
diff --git a/google-chrome-dev.install b/google-chrome-dev.install
new file mode 100644
index 000000000000..a2f6543cb99e
--- /dev/null
+++ b/google-chrome-dev.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-unstable'"
+}
+
+
+post_upgrade() {
+ post_install
+}
+
+
+post_remove() {
+ _update
+} \ No newline at end of file