blob: 84cb5a8c175ab76bbbd51505f8febda6463183d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# Maintainer (Arch): Firmicus <firmicus āt gmx dōt net>
# Maintainer (Arch): Rémy Oudompheng <remy@archlinux.org>
# Contributor (Hyperbola): André Silva <emulatorman@hyperbola.info>
# Maintainer: Michał Masłowski <mtjm@mtjm.eu>
# Contributor: Isaac David <isacdaavid@at@isacdaavid@dot@info>
_pkgname=texlive-latexextra-libre
pkgname=texlive-latexextra
pkgver=2017.45733
_revnr=${pkgver#2017.}
pkgrel=1.parabola1
pkgdesc="TeX Live - Large collection of add-on packages for LaTeX, without nonfree add-on packages"
license=('GPL')
arch=(any)
depends=('texlive-core'
'perl-file-which' # for pdfannotextractor
)
optdepends=(
'texlive-genericextra: to use the calctab package'
'texlive-pictures: to use the package overpic'
'java-environment: to use pdfannotextractor'
)
groups=('texlive-most')
replaces=('texlive-latexextra-libre')
conflicts=('texlive-latexextra-libre')
url='http://tug.org/texlive/'
mksource=("https://sources.archlinux.org/other/texlive/$pkgname-$pkgver-src.zip")
mksha256sums=('20360e1a799c237653caa1d66e4a3811b58520421633611c96ff812be93f6c36')
noextract=("$pkgname-$pkgver-src.zip")
source=("https://repo.parabola.nu/other/$_pkgname/$_pkgname-$pkgver-src.tar.xz"{,.sig}
"$pkgname.maps")
options=('!emptydirs')
sha256sums=('1f45474f0e74abb91af7004a468880c28a49a1b848b91d04441bf66eb0564923' 'SKIP'
'd53750a03a52472a1c7c5ba5142959ba382a5d69215471691c0b12c3663950ce')
validpgpkeys=('1B8C5E87702444D3D825CC8086ED62396D5DBA58') # Omar Vega Ramos <ovruni@gnu.org.pe>
mksource() {
mkdir $pkgname-$pkgver
pushd $pkgname-$pkgver
bsdtar xfv ../$pkgname-$pkgver-src.zip
# remove nonfree packages
# no specific free license
rm -v {authoraftertitle,clock,fnpara}.tar.xz
popd
}
prepare() {
cd $srcdir/$pkgname-$pkgver
echo -n " --> extracting all packages... "
for p in *.tar.xz; do
bsdtar -xf $p
done
rm -rf {tlpkg,doc,source} || true
# remove nonfree packages references from package list
sed -ri '/^(authoraftertitle|fnpara) /d' CONTENTS
}
package() {
cd $srcdir/$pkgname-$pkgver
install -m755 -d "$pkgdir"/var/lib/texmf/arch/installedpkgs
sed -i '/^#/d' CONTENTS
install -m644 CONTENTS "$pkgdir"/var/lib/texmf/arch/installedpkgs/${pkgname}_${_revnr}.pkgs
install -m644 $srcdir/$pkgname.maps "$pkgdir"/var/lib/texmf/arch/installedpkgs/
install -m755 -d "$pkgdir"/usr/share
wanteddirs=$(for d in *; do test -d $d && [[ $d != texmf* ]] && echo $d; done) || true
for dir in $wanteddirs; do
find $dir -type d -exec install -d -m755 "$pkgdir"/usr/share/texmf-dist/'{}' \;
find $dir -type f -exec install -m644 '{}' "$pkgdir"/usr/share/texmf-dist/'{}' \;
done
if [[ -d texmf-dist ]]; then
find texmf-dist -type d -exec install -d -m755 "$pkgdir"/usr/share/'{}' \;
find texmf-dist -type f -exec install -m644 '{}' "$pkgdir"/usr/share/'{}' \;
fi
if [[ -d "$pkgdir"/usr/share/texmf-dist/scripts ]]; then
find "$pkgdir"/usr/share/texmf-dist/scripts -type f -exec chmod a+x '{}' \;
fi
#add symlinks that were in texlive-bin:
_linked_scripts="
authorindex/authorindex
exceltex/exceltex
glossaries/makeglossaries
glossaries/makeglossaries-lite.lua
makedtx/makedtx.pl
pax/pdfannotextractor.pl
perltex/perltex.pl
splitindex/splitindex.pl
svn-multi/svn-multi.pl
vpe/vpe.pl
yplan/yplan
"
install -m755 -d "$pkgdir"/usr/bin
for _script in ${_linked_scripts}; do
_scriptbase=$(basename $_script)
_scriptbase=${_scriptbase%.*}
ln -s /usr/share/texmf-dist/scripts/${_script} ${pkgdir}/usr/bin/${_scriptbase}
done
rm "$pkgdir"/usr/share/texmf-dist/scripts/shipunov/biokey2html.bat
}
|