summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorxDShot2019-05-28 11:27:07 +0300
committerxDShot2019-05-28 11:27:07 +0300
commite86c9a500acdd8d7355cb46657143566a5499590 (patch)
tree17af6e3cece01f3976cd17a6585f82f26b3b6cd1
downloadaur-e86c9a500acdd8d7355cb46657143566a5499590.tar.gz
initial
-rw-r--r--.SRCINFO12
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD15
3 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..33386501b95f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = glualint-bin
+ pkgdesc = Linter for Garry's mod Lua.
+ pkgver = 1.11.1
+ pkgrel = 1
+ url = https://github.com/FPtje/GLuaFixer
+ arch = x86_64
+ license = LGPL2.1
+ source = https://github.com/FPtje/GLuaFixer/releases/download/1.11.1/glualint-1.11.1-linux.zip
+ sha256sums = ea05a68e8f7d414e46b3388036c7c515bef793eee95aef922ae6908fc9a94972
+
+pkgname = glualint-bin
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..8e76558ef9f4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*.pkg*
+*.zip
+src/*
+pkg/*
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..0933daf560ea
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
+_pkgname=glualint
+pkgname=${_pkgname}-bin
+pkgver=1.11.1
+pkgrel=1
+pkgdesc="Linter for Garry's mod Lua."
+arch=('x86_64')
+_githubrepo="https://github.com/FPtje/GLuaFixer"
+url=${_githubrepo}
+license=('LGPL2.1')
+source=("${_githubrepo}/releases/download/${pkgver}/${_pkgname}-${pkgver}-linux.zip")
+sha256sums=('ea05a68e8f7d414e46b3388036c7c515bef793eee95aef922ae6908fc9a94972')
+
+package() {
+ install -Dm755 "${srcdir}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
+}