summarylogtreecommitdiffstats
path: root/fontconfig-infinality-remix.install
diff options
context:
space:
mode:
Diffstat (limited to 'fontconfig-infinality-remix.install')
-rw-r--r--fontconfig-infinality-remix.install69
1 files changed, 69 insertions, 0 deletions
diff --git a/fontconfig-infinality-remix.install b/fontconfig-infinality-remix.install
new file mode 100644
index 000000000000..4281b8103c60
--- /dev/null
+++ b/fontconfig-infinality-remix.install
@@ -0,0 +1,69 @@
+redundant=(20-unhint-small-dejavu-sans-mono.conf
+ 20-unhint-small-dejavu-sans.conf
+ 20-unhint-small-dejavu-serif.conf
+ 57-dejavu-sans-mono.conf
+ 57-dejavu-sans.conf
+ 57-dejavu-serif.conf)
+
+post_install() {
+
+ cat << _EOF
+
+ Thank you for checking out fontconfig-infinality-remix.
+
+ By default, fontconfig will use use the remix font collection.
+
+ If you are going to use either a custom font collection or core
+ Microsoft families, set the appropriate presets using
+ fc-presets command.
+
+_EOF
+
+ pushd etc/fonts/conf.d > /dev/null
+ echo -e "Removing redundant symlinks ..."
+ for bit in "${redundant[@]}"; do
+ if [ -f ${bit} ]; then
+ rm -f ${bit}
+ fi
+ done
+ echo -e "Done."
+
+ echo -e "Creating symlinks for remix font collection ..."
+ ln -sf ../conf.avail.infinality/remix/30-metric-aliases-remix.conf .
+ ln -sf ../conf.avail.infinality/remix/37-repl-global-remix.conf .
+ ln -sf ../conf.avail.infinality/remix/60-latin-remix.conf .
+ ln -sf ../conf.avail.infinality/remix/65-non-latin-remix.conf .
+ ln -sf ../conf.avail.infinality/remix/66-aliases-wine-remix.conf .
+ echo -e "Done."
+
+ popd > /dev/null
+
+ echo -e "Updating font cache... "
+ /usr/bin/fc-cache -f
+ echo -e "Done."
+}
+
+post_upgrade() {
+ echo -e "Updating font cache... "
+ /usr/bin/fc-cache -f
+ echo "Done."
+}
+
+post_remove() {
+ pushd etc/fonts/conf.d > /dev/null
+ echo -e "Restoring old symlinks ..."
+ for bit in "${redundant[@]}"; do
+ if [[ ! -f ${bit} ]] && [[ -f ../conf.avail/${bit} ]]; then
+ ln -sf ../conf.avail/${bit} .
+ fi
+ done
+ echo -e "Done."
+
+ cat << _EOF
+
+ fontconfig-infinality-remix has been removed.
+ Check for dead symlinks and leftover files
+ in /etc/fonts/conf.d/
+
+_EOF
+}