summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Klomp2017-02-22 21:30:09 +0100
committerSven Klomp2017-02-22 21:30:09 +0100
commit73e5ff6f282cb21de7ba7d1d8f5118f1ef5a70a5 (patch)
tree0fdae2b37c365d741f7ad6cb34d727f6c7d86e51
downloadaur-73e5ff6f282cb21de7ba7d1d8f5118f1ef5a70a5.tar.gz
Initial commit of package
-rw-r--r--.SRCINFO16
-rw-r--r--PKGBUILD21
2 files changed, 37 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..e6b9eac266e1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Wed Feb 22 20:29:55 UTC 2017
+pkgbase = nextcloud-app-files-markdown
+ pkgdesc = Markdown Editor extends the Nextcloud text editor with a live preview for markdown files.
+ pkgver = 1.0.1
+ pkgrel = 1
+ url = https://github.com/icewind1991/files_markdown
+ arch = any
+ license = AGPL
+ depends = nextcloud
+ options = !strip
+ source = https://github.com/icewind1991/files_markdown/releases/download/v1.0.1/files_markdown.tar.gz
+ sha256sums = 73514984c947cb16bd353af0f1a13ba8d885116320b3de09e54a3271416dd09c
+
+pkgname = nextcloud-app-files-markdown
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..01ae6e0ce560
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,21 @@
+# Maintainer: Sven Klomp <mail at klomp dot eu>
+
+pkgdesc='Markdown Editor extends the Nextcloud text editor with a live preview for markdown files.'
+pkgname=('nextcloud-app-files-markdown')
+pkgver=1.0.1
+pkgrel=1
+arch=('any')
+license=('AGPL')
+url="https://github.com/icewind1991/files_markdown"
+makedepends=()
+depends=('nextcloud')
+options=('!strip')
+source=("https://github.com/icewind1991/files_markdown/releases/download/v${pkgver}/files_markdown.tar.gz")
+sha256sums=('73514984c947cb16bd353af0f1a13ba8d885116320b3de09e54a3271416dd09c')
+
+
+package() {
+ install -d "${pkgdir}/usr/share/webapps/nextcloud/apps"
+ cp -a "${srcdir}/files_markdown" "${pkgdir}/usr/share/webapps/nextcloud/apps/"
+}
+