3.1.1 -> 4.0.0, ./configure --options

This commit is contained in:
Manuel Wiesinger 2024-09-02 13:58:32 +02:00
parent 346e0ad42e
commit 4a2d99b807
2 changed files with 9 additions and 10 deletions

View file

@ -1,12 +1,12 @@
pkgbase = kissat
pkgdesc = A keep it simple and clean bare metal SAT solver written in C
pkgver = 3.1.1
pkgrel = 4
pkgver = 4.0.0
pkgrel = 1
url = https://fmv.jku.at/kissat
arch = x86_64
license = MIT
depends = glibc
source = kissat-3.1.1.tar.gz::https://github.com/arminbiere/kissat/archive/refs/tags/rel-3.1.1.tar.gz
b2sums = ce98105f2701e9dfab8dc555ace2d6891015e25bd23f09c1b2706ddb757f7580a555bdc20340d6880f2c4a0c786a71fd16466ab06a9c7499c81e4832665ce6c3
source = kissat-4.0.0.tar.gz::https://github.com/arminbiere/kissat/archive/refs/tags/rel-4.0.0.tar.gz
b2sums = 5cd8bec051ec231e381022247d9b7b5aee722b1b7a96ea71139fd391e28d4f05956aa4fe645f6c4318815ac57aa95679478d19c2b6459d03e9bd6bb0977dcdaa
pkgname = kissat

View file

@ -1,8 +1,8 @@
# Maintainer: Manuel Wiesinger <m {you know what belongs here} mmap {and here} at>
pkgname=kissat
pkgver=3.1.1
pkgrel=4
pkgver=4.0.0
pkgrel=1
pkgdesc="A keep it simple and clean bare metal SAT solver written in C"
arch=('x86_64')
url="https://fmv.jku.at/kissat"
@ -10,16 +10,15 @@ license=('MIT')
depends=('glibc')
_srcname="${pkgname}-rel-${pkgver}"
source=("$pkgname-$pkgver.tar.gz::https://github.com/arminbiere/kissat/archive/refs/tags/rel-${pkgver}.tar.gz")
b2sums=('ce98105f2701e9dfab8dc555ace2d6891015e25bd23f09c1b2706ddb757f7580a555bdc20340d6880f2c4a0c786a71fd16466ab06a9c7499c81e4832665ce6c3')
b2sums=('5cd8bec051ec231e381022247d9b7b5aee722b1b7a96ea71139fd391e28d4f05956aa4fe645f6c4318815ac57aa95679478d19c2b6459d03e9bd6bb0977dcdaa')
build() {
cd "${srcdir}/${_srcname}"
# -O3 is upstream default and well tested
# -shared with _one_ dash is on purpose
# --no-options and --kitten with _two dashes too
./configure --no-options \
-shared \
# --kitten with _two_ dashes too
./configure -shared \
--kitten
make
}