pkgname=pandoc-bin pkgver=3.1.12.2 pkgrel=1 pkgdesc="Pandoc - executable only, without 750MB Haskell depends/makedepends" url="https://pandoc.org" license=("GPL2") arch=('x86_64' 'aarch64') conflicts=("pandoc-cli") provides=("pandoc=$pkgver" "pandoc-cli=$pkgver") optdepends=('texlive-core: for pdf output') # The binary release doesn't have the datafiles, so we need to yoink those out of the source tarball, too. source=("$pkgname-source-$pkgver.tar.gz::https://github.com/jgm/pandoc/archive/${pkgver}.tar.gz") source_x86_64=("$pkgname-bin-$pkgver.tar.gz::https://github.com/jgm/pandoc/releases/download/${pkgver}/pandoc-${pkgver}-linux-amd64.tar.gz") source_aarch64=("$pkgname-bin-$pkgver.tar.gz::https://github.com/jgm/pandoc/releases/download/${pkgver}/pandoc-${pkgver}-linux-arm64.tar.gz") sha256sums=('f22f18fe008641fd3fccddb040c3747efd57fad669df6ca41f4926421f317bd2') sha256sums_x86_64=('40da725277f7617d045fc761b0375b3ba0990c5d03a908c207fed61b78e34986') sha256sums_aarch64=('9032b273aec5a1050b2e5f724c8a9dcaf657540c68e44dc477ec9fc38aebc173') package() { cd "${srcdir}/pandoc-${pkgver}" # To avoid having to download over a gigabyte of haskell makedepends (400-ish for ghc, plus 750 in libs), we # just yoink the binary from static compiled binary distributed by pandoc: mkdir -p "${pkgdir}/usr/share/pandoc" cp -R bin share "${pkgdir}/usr" # We're still missing all the datafiles and so on. We get those from the source tarball... cp -R data "${pkgdir}/usr/share/pandoc/" cp COPYRIGHT MANUAL.txt "${pkgdir}/usr/share/pandoc/" }