summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Mischka2016-12-02 22:03:07 -0600
committerJacob Mischka2016-12-02 22:04:28 -0600
commiteda1ef0246be232aad1efbfc9f71f38e361a44cf (patch)
tree8ab4afe82efd15e4496a89353a2bc8fd04a85a70
downloadaur-eda1ef0246be232aad1efbfc9f71f38e361a44cf.tar.gz
Initial commit
-rw-r--r--.SRCINFO16
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD20
3 files changed, 40 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..b038c431069b
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,16 @@
+# Generated by mksrcinfo v8
+# Sat Dec 3 04:04:18 UTC 2016
+pkgbase = notes-git
+ pkgdesc = Simple delightful note taking, with more unix and less lock-in.
+ pkgver = 20161202
+ pkgrel = 1
+ url = https://github.com/pimterry/notes
+ arch = any
+ license = MIT
+ makedepends = git
+ provides = notes
+ source = git+https://github.com/pimterry/notes.git
+ md5sums = SKIP
+
+pkgname = notes-git
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..4cad3c0ef9c2
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+notes
+pkg
+src
+*.pkg.*
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..9021d01c24f6
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer: Jacob Mischka <jacob@mischka.me>
+pkgname=notes-git
+pkgver=20161202
+pkgrel=1
+pkgdesc="Simple delightful note taking, with more unix and less lock-in."
+arch=('any')
+url="https://github.com/pimterry/notes"
+license=('MIT')
+depends=()
+makedepends=('git')
+provides=('notes')
+source=('git+https://github.com/pimterry/notes.git')
+md5sums=('SKIP')
+
+_gitroot=notes
+
+package() {
+ cd "$srcdir/$_gitroot"
+ install -D notes "$pkgdir/usr/bin/notes"
+}