summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorber532k2017-02-05 22:24:37 +0100
committerber532k2017-02-05 22:24:37 +0100
commit4d9770141869eefd2849153d12f753e00bb57c27 (patch)
treecd5a53471d70d313236c05a8bb616c101c994b25
downloadaur-4d9770141869eefd2849153d12f753e00bb57c27.tar.gz
initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD16
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..8b58e2a0e2e7
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = mkpdf
+ pkgdesc = A simple wrapper around pandoc and latexmk
+ pkgver = 0.1.0
+ pkgrel = 1
+ url = https://github.com/ber532k/mkpdf
+ arch = any
+ license = GPL3
+ depends = texlive-core
+ depends = biber
+ depends = pandoc
+ source = https://github.com/ber532k/mkpdf/archive/v0.1.0.tar.gz
+ md5sums = 6a94850578a210b2c21da576b382f694
+
+pkgname = mkpdf
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..a3f403a9dea2
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: ber532k <ber532k@gmx.de>
+pkgname=mkpdf
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="A simple wrapper around pandoc and latexmk"
+arch=('any')
+url="https://github.com/ber532k/mkpdf"
+license=('GPL3')
+depends=('texlive-core' 'biber' 'pandoc')
+source=("https://github.com/ber532k/$pkgname/archive/v$pkgver.tar.gz")
+md5sums=('6a94850578a210b2c21da576b382f694')
+
+package() {
+ mkdir -p $pkgdir/usr/bin
+ install -m755 $pkgname-$pkgver/mkpdf $pkgdir/usr/bin
+}