diff options
author | Mattias Andrée <maandree@kth.se> | 2023-07-04 06:55:44 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-07-04 06:55:44 +0200 |
commit | fd6d85a49636e01d8bc1a6e503b660e818a3b5bf (patch) | |
tree | d0e71db0fd98583a0e45ae38ab5468ba2362a4e4 | |
parent | Update liberror to version 1.1.1 (diff) | |
download | aur-packages-fd6d85a49636e01d8bc1a6e503b660e818a3b5bf.tar.gz aur-packages-fd6d85a49636e01d8bc1a6e503b660e818a3b5bf.tar.bz2 aur-packages-fd6d85a49636e01d8bc1a6e503b660e818a3b5bf.tar.xz |
Update libparser to version 1.1.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | libparser/PKGBUILD | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libparser/PKGBUILD b/libparser/PKGBUILD index 56aa637..312741f 100644 --- a/libparser/PKGBUILD +++ b/libparser/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@kth.se> pkgname=libparser -pkgver=1.1.1 +pkgver=1.1.2 pkgrel=1 -pkgdesc="Context-free grammar parsing library" +pkgdesc="Right-context-sensitive grammar parsing library" arch=(x86_64) -url="https://github.com/maandree/libparser" -license=('custom:ISC') +url="https://codeberg.org/maandree/libparser" +license=('ISC') depends=() checkdepends=() makedepends=() -source=(libparser-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) -sha256sums=(76b3a146be70ba1e413bcfef1cbcbfa0a4f4731aea349e86a266c2e9d8f32106) +source=($pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz) +sha256sums=(6610809e88d0ca7d3bf3cd2597fa95a8ba235b9c1d3a0a4502831010ec553e15) build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$pkgname" make PREFIX=/usr } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$pkgname" make PREFIX=/usr DESTDIR="$pkgdir" install } |