summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Puntiy2018-01-20 22:57:57 +0200
committerIvan Puntiy2018-01-20 22:57:57 +0200
commit02994cc9144f24369cd0a169e346623794aa287f (patch)
treecd6f93ed40e5702c885b99020b142f9d39f4e3fb
parent067bf7e14d4069fcd4f4464555f99c7ae1bc86ec (diff)
downloadaur-02994cc9144f24369cd0a169e346623794aa287f.tar.gz
Removed functionality provided by Pacman hooks.
-rw-r--r--culmus.install14
1 files changed, 0 insertions, 14 deletions
diff --git a/culmus.install b/culmus.install
index 1376ca5cec82..e15cb0e6c0cd 100644
--- a/culmus.install
+++ b/culmus.install
@@ -1,21 +1,11 @@
configs=('61-culmus.conf')
-update_fontcache() {
- fc-cache -fs
- mkfontscale /usr/share/fonts/Type1
- mkfontdir /usr/share/fonts/Type1
- mkfontscale /usr/share/fonts/TTF
- mkfontdir /usr/share/fonts/TTF
-}
-
post_install() {
pushd /etc/fonts/conf.d > /dev/null
for config in "${configs[@]}"; do
ln -sf ../conf.avail/${config} .
done
popd > /dev/null
-
- update_fontcache
}
post_upgrade() {
@@ -26,8 +16,6 @@ post_upgrade() {
done
popd > /dev/null
fi
-
- update_fontcache
}
post_remove() {
@@ -36,6 +24,4 @@ post_remove() {
rm -f ${config}
done
popd > /dev/null
-
- update_fontcache
}