diff --git a/extra/texlive-bin/PKGBUILD b/extra/texlive-bin/PKGBUILD index f9ce76bab..f16f1155a 100644 --- a/extra/texlive-bin/PKGBUILD +++ b/extra/texlive-bin/PKGBUILD @@ -10,7 +10,7 @@ pkgname=('texlive-bin' 'libsynctex') pkgver=2016.41290 -pkgrel=4 +pkgrel=5 license=('GPL') arch=('i686' 'x86_64') makedepends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler' @@ -28,9 +28,9 @@ source=('fix-fontforge-encoding.patch' md5sums=('bfb9716aa00c86c08cd31e5b32edeb98' '7303361f2d441eb5c962a996fd77e8fa' '7bc9cef52d3b0c15d2364b7d8658faa6' - 'b8005a998186d3846df357ef0f4b4560' + '2bbbef810687f4b2804a4b8cb91ce02f' 'c18cbbd000aac60813b1695aa058964f' - '06034157badeeefe9982d7b29e7f5b51') + 'c64d77b5111a26b9995263b49df4937c') build() { cd "$srcdir" @@ -117,7 +117,8 @@ package_texlive-bin() { 'libsynctex') provides=('lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam') conflicts=('pdfjam') - optdepends=('ed: for texconfig') + optdepends=('ed: for texconfig' + 'biber: for bibliography processing') install="texlive.install" options=('!strip') diff --git a/extra/texlive-bin/mktexlsr.script b/extra/texlive-bin/mktexlsr.script index e0c98f349..689441538 100644 --- a/extra/texlive-bin/mktexlsr.script +++ b/extra/texlive-bin/mktexlsr.script @@ -1,13 +1,12 @@ #!/bin/bash /usr/bin/mktexlsr -echo ">>> Updating LuaTeX filename database..." (cd /etc/texmf && /usr/bin/mtxrun --generate >/dev/null) # We need to remove directory "." from luatex cache to avoid absurd # behaviour. for item in /var/lib/texmf/luatex-cache/context/*/trees/*.lua; do if grep -F '["root"]="."' "$item" >/dev/null; then - rm -vf "$item" "${item%.lua}.luc" + rm -f "$item" "${item%.lua}.luc" fi done diff --git a/extra/texlive-bin/texlive-updmap.script b/extra/texlive-bin/texlive-updmap.script index 88be8e460..1d79186ff 100644 --- a/extra/texlive-bin/texlive-updmap.script +++ b/extra/texlive-bin/texlive-updmap.script @@ -3,15 +3,11 @@ UPDMAP="etc/texmf/web2c/updmap.cfg" UPDMAPLOCAL="etc/texmf/web2c/updmap-local.cfg" -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 if [[ -f "$UPDMAPLOCAL" ]]; then cat "$UPDMAPLOCAL" >> $UPDMAP fi -echo ">>> texlive: updating the fontmap files with updmap..." /usr/bin/updmap-sys --quiet --nohash -echo " done."