blob: 140935ad27b2eae89b362d34824cffad0daf4703 (
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.0.b
_pkgver=0.3.18.0b
_pandoc_pkgver=3.5
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=('f8653b973577af68e52f68ba8c5ae7ea52feb2133fad967ac9a1d825f2eb24c8')
package() {
cd "${srcdir}"
install -Dm755 pandoc-crossref -t "${pkgdir}/usr/bin/"
install -Dm644 pandoc-crossref.1 -t "${pkgdir}/usr/share/man/man1/"
}
|