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