summaryrefslogtreecommitdiff
path: root/libre/texlive-latexextra
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-08-08 07:12:20 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-08-08 07:12:20 -0300
commit76581df22bfb48e87a34c89a2cb2a8e38ff3f99c (patch)
tree75b99dffb37a903e96bbd63e8a15de0a418bd52f /libre/texlive-latexextra
parentc937ed2759bc34eba653c84f4d80cd8394776831 (diff)
texlive-latexextra-2016.41473-2.parabola1: updating version
Diffstat (limited to 'libre/texlive-latexextra')
-rw-r--r--libre/texlive-latexextra/PKGBUILD14
-rw-r--r--libre/texlive-latexextra/texlive.install52
2 files changed, 7 insertions, 59 deletions
diff --git a/libre/texlive-latexextra/PKGBUILD b/libre/texlive-latexextra/PKGBUILD
index 826cd80b9..c85ea404a 100644
--- a/libre/texlive-latexextra/PKGBUILD
+++ b/libre/texlive-latexextra/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 251050 2015-11-14 21:32:20Z remy $
+# $Id: PKGBUILD 272940 2016-08-03 06:30:21Z remy $
# Maintainer (Arch): Firmicus <firmicus āt gmx dōt net>
# Maintainer (Arch): Rémy Oudompheng <remy@archlinux.org>
# Maintainer: Michał Masłowski <mtjm@mtjm.eu>
@@ -6,9 +6,9 @@
_pkgname=texlive-latexextra-libre
pkgname=texlive-latexextra
-pkgver=2015.38831
-_revnr=${pkgver#2015.}
-pkgrel=1.parabola1
+pkgver=2016.41473
+_revnr=${pkgver#2016.}
+pkgrel=2.parabola1
pkgdesc="TeX Live - Large collection of add-on packages for LaTeX, without nonfree add-on packages"
license=('GPL')
arch=(any)
@@ -28,9 +28,8 @@ mksource=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip"
noextract=("$pkgname-$pkgver-src.zip")
source=("https://repo.parabola.nu/other/$_pkgname/$_pkgname-$pkgver-src.tar.xz" "$pkgname.maps")
options=('!emptydirs')
-install=texlive.install
-mkmd5sums=('5b41e1277c3e32bae7adb216f641be6b')
-md5sums=('876e6b7d15256ce0b51b41efd02ce823'
+mkmd5sums=('04e9310f60d2936ce08747dba24ceadc')
+md5sums=('24f16adfb91bd49abf016a5478d409cc'
'017fc9ed83747aa8884ca9ae0767531f')
mksource() {
@@ -83,6 +82,7 @@ package() {
authorindex/authorindex
exceltex/exceltex
glossaries/makeglossaries
+glossaries/makeglossaries-lite.lua
makedtx/makedtx.pl
pax/pdfannotextractor.pl
perltex/perltex.pl
diff --git a/libre/texlive-latexextra/texlive.install b/libre/texlive-latexextra/texlive.install
deleted file mode 100644
index befc29143..000000000
--- a/libre/texlive-latexextra/texlive.install
+++ /dev/null
@@ -1,52 +0,0 @@
-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 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."
-}