summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnathan Jenkins2017-04-13 07:45:16 -0700
committerJohnathan Jenkins2017-04-13 07:45:16 -0700
commit4a96cd6c834d7ff7ac5120331b2a5f488cf13c42 (patch)
tree5742f829ac42033a12399928c9b3f274f990d994
downloadaur-4a96cd6c834d7ff7ac5120331b2a5f488cf13c42.tar.gz
init release
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD15
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..9d0caaf162ef
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Thu Apr 13 14:44:59 UTC 2017
+pkgbase = nnn
+ pkgdesc = Free, fast, friendly file browser
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://github.com/jarun/nnn
+ arch = i386
+ arch = x86_64
+ license = GPL3
+ source = https://github.com/jarun/nnn/archive/v1.0.tar.gz
+ md5sums = b996d7db301d62fdb9610f058efa9f99
+
+pkgname = nnn
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..794c3a798026
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
+# Maintainer: John Jenkins <twodopeshaggy@gmail.com>
+
+pkgname=nnn
+pkgver=1.0
+pkgrel=1
+pkgdesc="Free, fast, friendly file browser"
+arch=("i386" "x86_64")
+url="https://github.com/jarun/nnn"
+license=('GPL3')
+source=("https://github.com/jarun/nnn/archive/v${pkgver//_/-}.tar.gz")
+md5sums=('b996d7db301d62fdb9610f058efa9f99')
+
+package() {
+ make -C "${pkgname}-$pkgver" DESTDIR="${pkgdir}" PREFIX="/usr" install
+}