diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-08-08 07:09:06 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-08-08 07:09:06 -0300 |
commit | c937ed2759bc34eba653c84f4d80cd8394776831 (patch) | |
tree | c868cb491319fcb5e05392d59155d70d91baabee /libre/texlive-fontsextra/texlive.install | |
parent | 1258e4c700060d5083d0052da1b5a6ed73d75c89 (diff) | |
download | abslibre-c937ed2759bc34eba653c84f4d80cd8394776831.tar.gz abslibre-c937ed2759bc34eba653c84f4d80cd8394776831.tar.bz2 abslibre-c937ed2759bc34eba653c84f4d80cd8394776831.zip |
texlive-fontsextra-2016.41439-2.parabola1: updating version
Diffstat (limited to 'libre/texlive-fontsextra/texlive.install')
-rw-r--r-- | libre/texlive-fontsextra/texlive.install | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/libre/texlive-fontsextra/texlive.install b/libre/texlive-fontsextra/texlive.install deleted file mode 100644 index bfd2222a0..000000000 --- a/libre/texlive-fontsextra/texlive.install +++ /dev/null @@ -1,52 +0,0 @@ -PKGNAME="texlive-fontsextra" -UPDMAP="etc/texmf/web2c/updmap.cfg" -UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg" -SYNCWITHTREES='' - -MAPFILE="var/lib/texmf/arch/installedpkgs/$PKGNAME.maps" - -post_install() { - TMPFILE=`mktemp` - echo ">>> texlive: saving updmap.cfg as $TMPFILE..." - cp "$UPDMAP" "$TMPFILE" - echo ">>> texlive: regenerating updmap.cfg (custom additions should go" - echo " into /etc/texmf/web2c/updmap-local.cfg" - cp usr/share/texmf-dist/web2c/updmap-hdr.cfg $UPDMAP - cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP - [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP - echo ">>> texlive: updating the filename database..." - usr/bin/mktexlsr - echo ">>> texlive: updating the fontmap files with updmap..." - usr/bin/updmap-sys --quiet --nohash - echo " done." -} - -post_upgrade() { - TMPFILE=`mktemp` - echo ">>> texlive: saving updmap.cfg as $TMPFILE..." - cp "$UPDMAP" "$TMPFILE" - echo ">>> texlive: regenerating updmap.cfg (custom additions should go" - echo " into /etc/texmf/web2c/updmap-local.cfg" - cp usr/share/texmf-dist/web2c/updmap-hdr.cfg $UPDMAP - cat var/lib/texmf/arch/installedpkgs/*.maps >> $UPDMAP - [ -f "$UPDMAPLOCAL" ] && cat "$UPDMAPLOCAL" >> $UPDMAP - echo ">>> texlive: updating the filename database..." - usr/bin/mktexlsr - echo ">>> texlive: updating the fontmap files with updmap..." - usr/bin/updmap-sys --quiet --nohash $SYNCWITHTREES - echo " done." -} - -pre_remove() { -for m in `cut -d' ' -f2 $MAPFILE`; do - sed -i "/\s$m/d" $UPDMAP ; -done -} - -post_remove() { - echo ">>> texlive: updating the filename database..." - usr/bin/mktexlsr - echo ">>> texlive: updating the fontmap files with updmap..." - usr/bin/updmap-sys --quiet --nohash - echo " done." -} |