diff options
Diffstat (limited to 'community/coq/PKGBUILD')
-rw-r--r-- | community/coq/PKGBUILD | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/community/coq/PKGBUILD b/community/coq/PKGBUILD index 798266553..3c8c707c3 100644 --- a/community/coq/PKGBUILD +++ b/community/coq/PKGBUILD @@ -3,7 +3,7 @@ pkgname=coq pkgver=8.3pl3 -pkgrel=2 +pkgrel=3 pkgdesc='Formal proof management system.' arch=('i686' 'x86_64' 'mips64el') url='http://coq.inria.fr/' @@ -11,12 +11,18 @@ license=('GPL') options=('!emptydirs') depends=('gtk2' 'lablgtk2' 'ocaml') makedepends=('camlp5-transitional' 'netpbm' 'hevea') -source=("http://coq.inria.fr/distrib/V${pkgver}/files/coq-${pkgver}.tar.gz") -md5sums=('37e9a52110a025128667c03fed75f9c2') +source=("http://coq.inria.fr/distrib/V${pkgver}/files/coq-${pkgver}.tar.gz" + 'camlp5-latest-fix.diff') +md5sums=('37e9a52110a025128667c03fed75f9c2' + '76c55f67f86a3f4b782bbba02ba8893f') build() { cd coq-${pkgver} + # fix compilation bug, remove next bump + # https://coq.inria.fr/bugs/show_bug.cgi?id=2728 + patch -Np0 -i ${srcdir}/camlp5-latest-fix.diff + ./configure \ -prefix '/usr' \ -mandir '/usr/share/man' \ |