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
|
# Contributor: Olivier Mehani <shtrom-aur@ssji.net>
# vim:set ts=2 sw=2 et:
pkgname=latex-template-acm
pkgver=201505
pkgrel=3
pkgdesc="ACM SIG Proceedings Format style for LaTeX (acm_proc_article-sp v3.2SP, sig-alternate v2.8, sigplanconf v2.5 and the unofficial sigplan-proc-varsize v1.4)"
arch=('any')
url="http://www.acm.org/sigs/publications/proceedings-templates, http://sigplan.acm.org/authorInformation.htm, http://www.isi.edu/~johnh/SOFTWARE/LATEX/"
_sigproc_new_url="http://www.acm.org/binaries/content/assets/publications/article-templates"
_sigproc_url="http://www.acm.org/sigs/publications"
_sigplan_url="http://drupal.sigplan.org/sites/default/files"
license=('')
depends=('texlive-latex3')
optdepends=('texlive-publishers: for acmart, the official 2017 ACM Master template, for use with any new work')
install=texlive.install
source=(${_sigproc_url}/sigproc-sp.pdf
${_sigproc_url}/acm_proc_article-sp.cls
${_sigproc_new_url}/flies.eps
${_sigproc_new_url}/fly.eps
${_sigproc_new_url}/rosette.eps
${_sigproc_new_url}/sig-alternate-sample.pdf
sig-alternate.cls::${_sigproc_new_url}/sig-alternate-05-2015.cls
${_sigproc_new_url}/sig-alternate-sample.tex
${_sigproc_new_url}/acmcopyright.sty
${_sigproc_new_url}/sigproc.bib
${_sigplan_url}/sigplanconf.cls
${_sigplan_url}/sigplanconf-template.tex
${_sigplan_url}/sigplanconf-guide.pdf
http://www.isi.edu/~johnh/SOFTWARE/LATEX/sigplan-proc-varsize-package.tar.gz
)
package() {
mkdir -p ${pkgdir}/usr/share/texmf-dist/tex/latex/{sigproc,sigplan,sigplan-proc-varsize}
cp ${srcdir}/{acm_proc_article-sp,sigproc,flies,fly,rosette,sig-alternate,acmcopyright.sty}* \
${pkgdir}/usr/share/texmf-dist/tex/latex/sigproc
cp ${srcdir}/sigplanconf* ${pkgdir}/usr/share/texmf-dist/tex/latex/sigplan
tar xzvf ${srcdir}/sigplan-proc-varsize-package.tar.gz \
-C ${pkgdir}/usr/share/texmf-dist/tex/latex/sigplan-proc-varsize
}
md5sums=('SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP'
'SKIP')
|