blob: 58e055fe303ffa51d782e6fd21db365592f91b3b (
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
|
# Maintainer: Ruben De Smet <ruben dot de dot smet at rubdos dot be>
pkgname='texlive-vub'
pkgver="4.0.0"
pkgrel=1
pkgdesc='Provides a titlepage, a beamer template and other style elements for the Vrije Universiteit Brussel.'
url='https://gitlab.com/rubdos/texlive-vub/'
license=(
'LPPL'
)
source=(
"https://gitlab.com/rubdos/texlive-vub/-/archive/v${pkgver}/texlive-vub-v${pkgver}.tar.gz"
)
sha512sums=('941fa7911df510106526ecc0c058527cf387a0d5c8f8fc1f5ab8c0029d338f886dd5ca17444d8ac369b8433632df1a0358875276b4bae80c473e96ab6a42cc53')
arch=(
'any'
)
depends=(
'texlive-core'
'tex-gyre-fonts'
'texlive-latexextra'
'ttf-roboto'
)
makedepends=(
)
optdepends=(
'texlive-fontsextra: The beamer theme uses the Roboto fonts, with pdflatex.'
'ttf-roboto: The beamer theme uses the Roboto fonts, with xelatex and lualatex.'
)
checkdepends=(
)
options=(
'!emptydirs'
)
package() {
dir=$srcdir/texlive-vub-v${pkgver}*
mkdir -p $pkgdir/usr/share/texmf/tex/latex/vub
mkdir -p $pkgdir/usr/share/texmf/tex/latex/vub/dept
for image in vub_logo_cmyk.pdf ulb_logo_3lp.eps bruface.png; do
cp $dir/$image $pkgdir/usr/share/texmf/tex/latex/vub;
done
for dept in vub-brubotics-cmyk.pdf vub-etro-cmyk.pdf vub-soft.pdf vub-ai.pdf; do
cp $dir/dept/$dept $pkgdir/usr/share/texmf/tex/latex/vub/dept;
done
cp $dir/*.sty $pkgdir/usr/share/texmf/tex/latex/vub
}
post_install() {
mktexlsr
}
post_remove() {
mktexlsr
}
# vim: tabstop=1 expandtab
|