index : packages | |
Archlinux32 package modifications | gitolite user |
summaryrefslogtreecommitdiff |
author | Tasos Sahanidis <tasos@tasossah.com> | 2024-04-06 01:41:31 +0300 |
---|---|---|
committer | Tasos Sahanidis <tasos@tasossah.com> | 2024-04-06 01:41:42 +0300 |
commit | cc2fdad544149d4e7f982b69e2240bb5ddd09ffa (patch) | |
tree | ea0949a34df155e9da3e77483fc1390616007ef4 | |
parent | f728c73443cb00589d648d61f0e9bcb726024b99 (diff) |
-rw-r--r-- | build-support/pandoc-cli/PKGBUILD | 25 |
diff --git a/build-support/pandoc-cli/PKGBUILD b/build-support/pandoc-cli/PKGBUILD new file mode 100644 index 00000000..9109e635 --- /dev/null +++ b/build-support/pandoc-cli/PKGBUILD @@ -0,0 +1,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/ +} |