summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Perez de Castro2021-11-24 21:34:08 +0200
committerAdrian Perez de Castro2021-11-24 21:34:08 +0200
commitbc644ca54e5e524a6be4695d9d3c423c2b8212b1 (patch)
tree2aeedb33a0102dd6694dc3c9fd431e3bfd1d2998
parent9c2a8ac6a6cd4cc9c5eb88f8e7db2608a4099541 (diff)
downloadaur-bc644ca54e5e524a6be4695d9d3c423c2b8212b1.tar.gz
Add missing glibc dependency, fix homepage URL
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD13
2 files changed, 10 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 5e76db610da2..6fcdf14e9dbf 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,13 @@
-# Generated by mksrcinfo v8
-# Sun Dec 27 18:45:48 UTC 2015
pkgbase = llnextgen
- pkgdesc = The spirtual successor of Jacob Grune's parser generator.
+ pkgdesc = The spirtual successor of Jacobs and Grune's parser generator.
pkgver = 0.5.5
- pkgrel = 1
- url = os.ghalkes.nl/LLnextgen/download.html
+ pkgrel = 2
+ url = https://os.ghalkes.nl/LLnextgen/download.html
arch = i686
arch = x86_64
license = GPL3
+ depends = glibc
source = http://os.ghalkes.nl/LLnextgen/releases/LLnextgen-0.5.5.tgz
md5sums = f3733cca58f862d41b8fb3d9e20b8426
pkgname = llnextgen
-
diff --git a/PKGBUILD b/PKGBUILD
index 50f4250211fc..85b86135615a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,15 +1,14 @@
-# Maintainer: Zachary Lund <admin@computerquip.com>
+# Maintainer: Adrian Perez de Castro <aperez@igalia.com>
+# Maintainer: Zachary Lund <admin@computerquip.com>
pkgname=llnextgen
pkgver=0.5.5
-pkgrel=1
+pkgrel=2
pkgdesc="The spirtual successor of Jacobs and Grune's parser generator."
arch=('i686' 'x86_64')
-url="os.ghalkes.nl/LLnextgen/download.html"
+url=https://os.ghalkes.nl/LLnextgen/download.html
license=('GPL3')
-makedepends=()
-depends=()
-conflicts=()
+depends=(glibc)
source=("http://os.ghalkes.nl/LLnextgen/releases/LLnextgen-$pkgver.tgz")
md5sums=('f3733cca58f862d41b8fb3d9e20b8426')
@@ -24,4 +23,4 @@ package() {
cd "$srcdir/LLnextgen-$pkgver"
make prefix="$pkgdir/usr/" install
-} \ No newline at end of file
+}