diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2011-09-03 12:47:28 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2011-09-03 12:47:28 +0200 |
commit | c8a4bdcbe586a771168e3cad70b61af5062b6b80 (patch) | |
tree | f4d4e5968f418c618d8b36c38528f1277c2b7f17 /libre/texlive-latexextra-libre/texlive.install | |
parent | cc84938b0b3cb7716ed2d1d72d1ec5abb0a7ce84 (diff) | |
download | abslibre-c8a4bdcbe586a771168e3cad70b61af5062b6b80.tar.gz abslibre-c8a4bdcbe586a771168e3cad70b61af5062b6b80.tar.bz2 abslibre-c8a4bdcbe586a771168e3cad70b61af5062b6b80.zip |
libre/texlive-latexextra-libre without nonfree packages.
Diffstat (limited to 'libre/texlive-latexextra-libre/texlive.install')
-rw-r--r-- | libre/texlive-latexextra-libre/texlive.install | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/libre/texlive-latexextra-libre/texlive.install b/libre/texlive-latexextra-libre/texlive.install new file mode 100644 index 000000000..e8878db08 --- /dev/null +++ b/libre/texlive-latexextra-libre/texlive.install @@ -0,0 +1,52 @@ +PKGNAME="texlive-latexextra" +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 shoud go" + echo " into /etc/texmf/web2c/updmap-local.cfg" + cp usr/share/texmf/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 shoud go" + echo " into /etc/texmf/web2c/updmap-local.cfg" + cp usr/share/texmf/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." +} |