diff options
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 7 insertions, 5 deletions
@@ -1,6 +1,6 @@ pkgbase = gawk-git pkgdesc = GNU version of awk - pkgver = 4.1.4.r1635.g5557a45f + pkgver = 5.2.1.r271.gc71ae933 pkgrel = 1 url = https://www.gnu.org/software/gawk/ arch = i686 @@ -9,10 +9,10 @@ pkgbase = gawk-git makedepends = git depends = glibc depends = mpfr + provides = gawk=5.2.1.r271.gc71ae933 provides = awk conflicts = gawk source = git+https://git.savannah.gnu.org/git/gawk.git sha256sums = SKIP pkgname = gawk-git - @@ -1,7 +1,7 @@ # Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net> pkgname=gawk-git -pkgver=4.1.4.r1635.g5557a45f +pkgver=5.2.1.r271.gc71ae933 pkgrel=1 pkgdesc="GNU version of awk" arch=('i686' 'x86_64') @@ -9,7 +9,7 @@ url="https://www.gnu.org/software/gawk/" license=('GPL3') depends=('glibc' 'mpfr') makedepends=('git') -provides=('awk') +provides=("gawk=$pkgver" 'awk') conflicts=('gawk') source=("git+https://git.savannah.gnu.org/git/gawk.git") sha256sums=('SKIP') @@ -25,7 +25,9 @@ build() { cd "gawk" ./bootstrap.sh - ./configure --prefix="/usr" --without-libsigsegv + ./configure \ + --prefix="/usr" \ + --without-libsigsegv make } |