blob: 0952ffb8b2e005ed250a8ac8dddecbfea18bc9bf (
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
|
pkgname=candy-kingdom-git
_pkgname=candy-kingdom
pkgver=1388
pkgrel=1
pkgdesc="A collection of SAT solvers and tools for structure analysis in SAT problems."
arch=("any")
url="https://github.com/Udopia/candy-kingdom"
license=("MIT")
makedepends=("cmake" "git")
source=(
"${_pkgname}::git+https://github.com/Udopia/candy-kingdom.git#branch=master"
)
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
git rev-list --count HEAD
}
prepare() {
cd "${_pkgname}"
git submodule init
git submodule set-url -- lib/oscpack https://github.com/Udopia/oscpack.git
git submodule update
}
build() {
mkdir -p "${_pkgname}/build"
cd "${_pkgname}/build"
cmake -DCMAKE_BUILD_TYPE=Release ..
make candy
}
package() {
cd "${_pkgname}/build"
install -Dm 755 candy "${pkgdir}/usr/bin/candy"
install -Dm 644 libcandylib.a "${pkgdir}/usr/lib/libcandylib.a"
}
|