summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Lima2016-06-22 06:12:20 -0300
committerDaniel Lima2016-06-22 06:12:20 -0300
commitae878e3308d76fc28f603fb7dbf1b5c0bc4ce7a3 (patch)
tree3ea885f852f0b735c5649b47a21dc99e9b9abe5d
downloadaur-ae878e3308d76fc28f603fb7dbf1b5c0bc4ce7a3.tar.gz
initial commit
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD17
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..6e3a9e228217
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Wed Jun 22 09:10:20 UTC 2016
+pkgbase = luas
+ pkgdesc = Lua environment manager
+ pkgver = 0.2
+ pkgrel = 1
+ url = https://github.com/limadm/luas
+ arch = i686
+ arch = x86_64
+ license = MIT
+ source = git+https://github.com/limadm/luas
+ sha256sums = SKIP
+
+pkgname = luas
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..d1d3b16da919
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Daniel Lima <danielm@tinyhub.tk>
+
+pkgname=luas
+pkgver=0.2
+pkgrel=1
+pkgdesc='Lua environment manager'
+arch=('i686' 'x86_64')
+url='https://github.com/limadm/luas'
+license=('MIT')
+source=(git+https://github.com/limadm/luas)
+sha256sums=('SKIP')
+
+package() {
+ cd $srcdir/luas
+ PREFIX=$pkgdir ./install.sh
+}
+