diff options
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/clasp/PKGBUILD | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pcr/clasp/PKGBUILD b/pcr/clasp/PKGBUILD index 30bd7e699..69dc40aa4 100644 --- a/pcr/clasp/PKGBUILD +++ b/pcr/clasp/PKGBUILD @@ -3,19 +3,19 @@ pkgname=clasp groups=('potassco') -pkgver=3.1.3 +pkgver=3.1.4 pkgrel=1 pkgdesc="A conflict-driven nogood learning answer set solver." arch=('x86_64' 'i686' 'armv7h') url="http://potassco.sourceforge.net/" license=('GPL3') -depends=() +makedepends=('clang') source=("http://downloads.sourceforge.net/project/potassco/${pkgname}/${pkgver}/${pkgname}-${pkgver}-source.tar.gz") -sha1sums=(9a261b64586092179cc3b327895b9b3521818ee2) +sha1sums=(5be43c2a912cdf1ea513e99c3f7173db1cad290d) build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure.sh --prefix='/usr' + ./configure.sh --prefix='/usr' CXX=clang++ cd build/release make } |