diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2011-09-03 12:59:06 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2011-09-03 12:59:06 +0200 |
commit | e0b04a8dfc5f8f5e9e7d9c1c957374edf4ea73d1 (patch) | |
tree | 771c4702a1f93f9314c0706fdc18e8a8ea4b937b /libre/texlive-texmf-libre/texlive.install | |
parent | c8a4bdcbe586a771168e3cad70b61af5062b6b80 (diff) | |
download | abslibre-e0b04a8dfc5f8f5e9e7d9c1c957374edf4ea73d1.tar.gz abslibre-e0b04a8dfc5f8f5e9e7d9c1c957374edf4ea73d1.tar.bz2 abslibre-e0b04a8dfc5f8f5e9e7d9c1c957374edf4ea73d1.zip |
Remove texlive-texmf-libre, impractical and replaced by texlive-core-libre, etc.
Diffstat (limited to 'libre/texlive-texmf-libre/texlive.install')
-rw-r--r-- | libre/texlive-texmf-libre/texlive.install | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/libre/texlive-texmf-libre/texlive.install b/libre/texlive-texmf-libre/texlive.install deleted file mode 100644 index 3ec6158ba..000000000 --- a/libre/texlive-texmf-libre/texlive.install +++ /dev/null @@ -1,51 +0,0 @@ -# From Arch's texlive-core. - -PKGNAME="texlive-texmf-libre" -UPDMAP="etc/texmf/web2c/updmap.cfg" -UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg" -SYNCWITHTREES='' - -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." - echo -n "creating all formats..." - usr/bin/fmtutil-sys --all 1>/dev/null - echo " done." - echo " (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)" -# TODO needs our documentation -# echo "NB: To setup ConTeXt and the lua(la)tex font db," -# echo " see http://wiki.archlinux.org/index.php/TeX_Live" -} - -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." - echo ">>> texlive: recreating all formats..." - usr/bin/fmtutil-sys --all 1>/dev/null - echo " done." - echo " (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)" -# echo "NB: To setup ConTeXt and the lua(la)tex font db," -# echo " see http://wiki.archlinux.org/index.php/TeX_Live" -} |