Date: Tuesday, August 17, 2021 @ 10:47:25 Author: arodseth Revision: 1001327
upgpkg: clasp 3.3.6-1 Modified: clasp/trunk/PKGBUILD ----------+ PKGBUILD | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-08-17 10:37:53 UTC (rev 1001326) +++ PKGBUILD 2021-08-17 10:47:25 UTC (rev 1001327) @@ -2,24 +2,22 @@ # Contributor: Vincent Bernardoff <[email protected]> pkgname=clasp -pkgver=3.3.5 -pkgrel=2 +pkgver=3.3.6 +pkgrel=1 pkgdesc='Answer set solver' -arch=('x86_64') +arch=(x86_64) url='https://potassco.org/' -license=('GPL3') -makedepends=('cmake' 'git' 'ninja') -conflicts=('clingo') -source=("git+https://github.com/potassco/clasp.git#tag=v$pkgver") -md5sums=('SKIP') +license=(GPL3) +makedepends=(cmake git ninja) +conflicts=(clingo) +source=("git+https://github.com/potassco/clasp#commit=a8dfc0ab916abe4008452279fb5131b392c20018") # tag: v3.3.6 +b2sums=('SKIP') build() { - mkdir -p build - cd build - cmake "../$pkgname" \ - -DCMAKE_INSTALL_PREFIX=/usr \ + cmake -B build -S $pkgname \ + -D CMAKE_INSTALL_PREFIX=/usr \ -G Ninja - ninja + ninja -C build } package() { @@ -27,4 +25,3 @@ } # getver: github.com/potassco/clasp/releases -# vim: ts=2 sw=2 et:
