blob: c31c83804ba4c95fd0d8e0fe1b3de25e5d8b91fb (
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
|
# Maintainer: eNV25 <env252525@gmail.com>
# previous maintainer did not leave his email
pkgname=pandoc-crossref-bin
pkgver=0.3.18.2
_pkgver=0.3.18.2
_pandoc_pkgver=3.6.4
pkgrel=1
pkgdesc="Pandoc filter for cross-references - executable only"
url="https://github.com/lierdakil/pandoc-crossref/"
license=("GPL-2.0-or-later")
arch=('x86_64')
conflicts=("pandoc-crossref")
provides=("pandoc-crossref")
depends=("pandoc>=${_pandoc_pkgver}")
options=(!strip)
source=(
"pandoc-crossref-${_pkgver}.tar.xz::https://github.com/lierdakil/pandoc-crossref/releases/download/v${_pkgver}/pandoc-crossref-Linux-X64.tar.xz"
)
sha256sums=('ef52c450947c25dbe30324ba4ba04d941437557bd45a35b159c4175f69b2b578')
package() {
cd "${srcdir}"
install -Dm755 pandoc-crossref -t "${pkgdir}/usr/bin/"
install -Dm644 pandoc-crossref.1 -t "${pkgdir}/usr/share/man/man1/"
}
|