blob: 4c1fed10488f7c84ed5be7867293d828d40060f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Keep-it-simple and clean bare metal SAT solver written in C"
HOMEPAGE="http://fmv.jku.at/kissat/
https://github.com/arminbiere/kissat/"
SRC_URI="https://github.com/arminbiere/${PN}/archive/rel-${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}"/${PN}-rel-${PV}
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="!>=x11-terms/kitty-0.27"
src_configure() {
local myopts=(
CC="$(tc-getCC) ${CFLAGS} ${LDFLAGS}"
--kitten
--statistics
)
sh ./configure "${myopts[@]}" || die
}
src_compile() {
emake AR="$(tc-getAR)"
}
src_install() {
dolib.a build/libkissat.a
exeinto /usr/bin/
doexe build/{kissat,kitten}
dodoc CONTRIBUTING NEWS.md README.md
}
|