blob: 55243f311ca31ed12e263b1e42f08c0b410ba6bc (
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
28
29
|
# Maintainer: eNV25 <env252525@gmail.com>
# previous maintainer did not leave his email
pkgname=pandoc-crossref-bin
pkgver=0.3.17.1.b
_pkgver=0.3.17.1b
_pandoc_pkgver=3.2.1
pkgrel=1
pkgdesc="Pandoc filter for cross-references - executable only"
url="https://github.com/lierdakil/pandoc-crossref/"
license=("GPL2")
arch=('x86_64')
conflicts=("pandoc-crossref")
provides=("pandoc-crossref")
replaces=("haskell-pandoc-crossref-bin" 'pandoc-crossref-static' 'pandoc-crossref-lite')
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.tar.xz"
)
sha256sums=('de7a53b72c1983f0ced1492f6ae200be567a3c3bd125e91f056e12e67327ef64')
package() {
cd "${srcdir}"
install -Dm755 pandoc-crossref -t "${pkgdir}/usr/bin/"
install -Dm644 pandoc-crossref.1 -t "${pkgdir}/usr/share/man/man1/"
}
|