diff options
author | Isaac Dunham <ibid.ag@gmail.com> | 2015-08-16 19:10:23 -0700 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-08-18 14:34:36 +0200 |
commit | e481f694dcfd9f77b50bdda5ecc29cc0c950df81 (patch) | |
tree | 97af305e865c12a5b69ab8c3930b38409d17c779 /testing/texlive | |
parent | 2a96f7ce1bd56cbb01dc16c8b28b957c5d916cb3 (diff) | |
download | aports-e481f694dcfd9f77b50bdda5ecc29cc0c950df81.tar.bz2 aports-e481f694dcfd9f77b50bdda5ecc29cc0c950df81.tar.xz |
testing/texlive: install some perl modules
According to http://osdir.com/ml/blfs-dev/2015-06/msg00062.html
this is necessary to avoid http://bugs.alpinelinux.org/issues/4514
Diffstat (limited to 'testing/texlive')
-rw-r--r-- | testing/texlive/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/texlive/APKBUILD b/testing/texlive/APKBUILD index 4c19a185d..bcb997fc4 100644 --- a/testing/texlive/APKBUILD +++ b/testing/texlive/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=texlive pkgver=20150521 -pkgrel=1 +pkgrel=2 pkgdesc="A complete TeX distribution" url="http://tug.org/texlive/" arch="all" @@ -93,6 +93,8 @@ build() { package() { cd "$_builddir"/build make DESTDIR="$pkgdir" install || return 1 + cp -rf ../texk/tests/TeXLive \ + "$pkgdir"/usr/share/texmf-dist/scripts/texlive || return 1 rm -f "$pkgdir"/usr/lib/*.la } |