summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD19
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..b9c3ba13d7a1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = pandoc-bin
+ pkgdesc = Universal markup converter (Binary build from official deb)
+ pkgver = 1.13.2
+ pkgrel = 2
+ url = http://pandoc.org/
+ arch = x86_64
+ license = GPL2
+ depends = gmp
+ depends = zlib
+ optdepends = texlive-most: for PDF creation
+ source_x86_64 = https://github.com/jgm/pandoc/releases/download/1.13.2/pandoc-1.13.2-1-amd64.deb
+ md5sums_x86_64 = 90e22cf8291d7444fb34d0a41c49dcf6
+
+pkgname = pandoc-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..48b8e6219f62
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer Keerthan Jaic <jckeerthan at gmail dot com>
+
+pkgname=pandoc-bin
+pkgver=1.13.2
+pkgrel=2
+pkgdesc="Universal markup converter (Binary build from official deb)"
+arch=('x86_64')
+url="http://pandoc.org/"
+license=('GPL2')
+depends=('gmp' 'zlib')
+optdepends=('texlive-most: for PDF creation')
+source_x86_64=("https://github.com/jgm/pandoc/releases/download/${pkgver}/pandoc-${pkgver}-1-amd64.deb")
+md5sums_x86_64=('90e22cf8291d7444fb34d0a41c49dcf6')
+
+package() {
+ bsdtar -xf data.tar.gz -C "$pkgdir/"
+ # This folder only has the license
+ rm -r "$pkgdir"/usr/share/doc
+}