blob: 6012698aa1abcbacc69652b320d57c32ba1f6a60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Vojtech Kral ❬vojtech%kral.pm❭
pkgname=bard-bin
pkgver=2.0.1
pkgrel=1
pkgdesc="Creates PDF and HTML songbooks out of easy-to-write Markdown sources. Binary package."
arch=('x86_64')
url="https://github.com/vojtechkral/bard"
license=('Apache-2.0')
depends=()
optdepends=('texlive-bin: TeX engine (generate PDFs) '
'tectonic: Alternative TeX engine (generate PDFs) ')
source=("https://github.com/vojtechkral/bard/releases/download/v${pkgver}/bard")
sha256sums=('98942ae973a100bb2bc41a973c7628a89f464b24c0de46f3a2967b2bbd650117')
package() {
install -Dm 755 bard -t "${pkgdir}/usr/bin/"
}
|