blob: 9109e63535049296f84ee7102119163c51f62626 (
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
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Maintainer: Caleb Maclennan <caleb@alerque.com>
pkgname=pandoc-cli
pkgver=1
pkgrel=1
pkgdesc="Conversion between documentation formats"
url="https://pandoc.org"
license=("GPL-2.0-or-later")
arch=('x86_64')
provides=('pandoc')
conflicts=('pandoc')
replaces=('pandoc')
source=("git+https://github.com/tatokis/nodoc.git")
sha256sums=('SKIP')
build() {
cd nodoc
make
}
package() {
cd nodoc
install -D -m755 pandoc -t "$pkgdir"/usr/bin/
}
|