diff options
Diffstat (limited to 'core/bison/PKGBUILD')
-rw-r--r-- | core/bison/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/core/bison/PKGBUILD b/core/bison/PKGBUILD index b54299db9..9eaf6a155 100644 --- a/core/bison/PKGBUILD +++ b/core/bison/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 87221 2010-08-11 03:29:16Z allan $ +# $Id: PKGBUILD 124065 2011-05-16 12:02:28Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> # Contributor: Eric Belanger <eric@archlinux.org> pkgname=bison -pkgver=2.4.3 +pkgver=2.5 pkgrel=1 pkgdesc="The GNU general-purpose parser generator" arch=('i686' 'x86_64' 'mips64el') @@ -13,12 +13,16 @@ depends=('glibc' 'm4' 'sh') groups=('base-devel') install=bison.install source=(ftp://ftp.gnu.org/gnu/bison/${pkgname}-${pkgver}.tar.bz2) -md5sums=('c1d3ea81bc370dbd43b6f0b2cd21287e') +md5sums=('9dba20116b13fc61a0846b0058fbe004') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --datadir=/usr/share make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" make check } |