52 lines
2 KiB
Bash
52 lines
2 KiB
Bash
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
|
|
|
|
pkgname=pandoc-bin
|
|
pkgver=3.7.0.2
|
|
pkgrel=1
|
|
pkgdesc="Conversion between documentation formats"
|
|
url="https://pandoc.org"
|
|
license=(
|
|
GPL-2.0-or-later
|
|
)
|
|
arch=(
|
|
x86_64
|
|
aarch64
|
|
)
|
|
conflicts=(
|
|
"pandoc-cli"
|
|
)
|
|
provides=(
|
|
"pandoc=$pkgver"
|
|
"pandoc-cli=$pkgver"
|
|
)
|
|
optdepends=(
|
|
'pandoc-crossref: for numbering figures, equations, tables and cross-references to them with pandoc-crossref filter'
|
|
'texlive-context: for pdf output using context engine'
|
|
'groff: for pdf output using pdfroff engine'
|
|
'python-weasyprint: for pdf output using weasyprint engine'
|
|
'typst: for pdf output using typst engine'
|
|
'tectonic: for pdf output using tectonic engine'
|
|
'texlive-fontsrecommended: for pdf output using latex or xelatex engines'
|
|
'texlive-latex: for pdf output using pdflatex engine'
|
|
'texlive-xetex: for pdf output using xelatex engine'
|
|
)
|
|
|
|
# The binary release doesn't have the datafiles, so we need to yoink those out of the source tarball, too.
|
|
source=("$pkgname-$pkgver.tar.gz::https://github.com/jgm/pandoc/archive/${pkgver}.tar.gz")
|
|
source_x86_64=("https://github.com/jgm/pandoc/releases/download/${pkgver}/pandoc-${pkgver}-linux-amd64.tar.gz")
|
|
source_aarch64=("https://github.com/jgm/pandoc/releases/download/${pkgver}/pandoc-${pkgver}-linux-arm64.tar.gz")
|
|
|
|
b2sums=('c8ca6d76e8a2bd3947fbce35d0268134c4c06245ff2bf57f547c2868bd0b552add550cb48d7472e465732d57588d696b9bf0f8a632fd55d078fb2bad7eab7f08')
|
|
b2sums_x86_64=('e52e3f016e05e8786f07d06fde9bc39e0e3ae1b3e739403ef130aabbbdfa74fdad14dcefb919ef39eaf92e574a7caae9123badcee229b21a90c9096501554c33')
|
|
b2sums_aarch64=('6c16c2e156e644ca785dc223885348ac0297e914a757a9ff7d1dbf3bdcace9b04c4ab34fda60a7db265860fd05614aedbc36e3cb65d409f846684adb3de41378')
|
|
|
|
package() {
|
|
cd "${srcdir}/pandoc-${pkgver}"
|
|
|
|
mkdir -p "${pkgdir}/usr/share/pandoc"
|
|
cp -R bin share "${pkgdir}/usr"
|
|
cp -R data citeproc "${pkgdir}/usr/share/pandoc/"
|
|
cp COPYRIGHT MANUAL.txt "${pkgdir}/usr/share/pandoc/"
|
|
}
|
|
|
|
# vim: set ft=sh ts=4 sw=4 et:
|