blob: 69435cfddc5149f6eae4ac02c8db8f4be0c4b727 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Maintainer: Carl Smedstad <carl.smedstad at protonmail dot com>
# Contributor: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Caltlgin Stsodaat <contact@fossdaily.xyz>
# Contributor: Sandy Carter <bwrsandman+aur@gmail.com>
pkgname=fuzzylite
pkgver=6.0
pkgrel=6
pkgdesc="C++ fuzzy logic control library"
arch=(x86_64 i686 aarch64)
url="https://github.com/fuzzylite/fuzzylite"
license=(GPL3)
depends=(
gcc-libs
glibc
)
makedepends=(cmake)
provides=('libfuzzylite.so')
changelog=CHANGELOG
source=(
"$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz"
"remove-werror.patch"
"fix-catch-glibc-compatibility.patch"
)
sha256sums=(
'7e9f56deb9baf063de2232bfd8285f57ddccb651dae842fe3f587d0ac65ecdb0'
'397f8888000225c4ee2b4a1b639c04dc59979e041dd3b8a6e7f65344f68d5b3b'
'02474d9d973f65338d95d00b72cf7370b00c8e5c1c3cb42f63d844d967e267a7'
)
_archive="$pkgname-$pkgver"
prepare() {
cd "$_archive"
patch --forward --strip=1 --input="$srcdir/remove-werror.patch"
patch --forward --strip=1 --input="$srcdir/fix-catch-glibc-compatibility.patch"
sed -i '/BenchmarkTest.cpp/d' fuzzylite/FL_TESTS
}
build() {
cd "$_archive"
cmake \
-B build \
-S "$pkgname" \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DFL_BUILD_STATIC=OFF \
-DFL_BUILD_TESTS=ON \
-Wno-dev
cmake --build build
}
check() {
cd "$_archive/build/bin"
./fuzzylite-tests
}
package() {
cd "$_archive"
DESTDIR="$pkgdir" cmake --install build
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
install -Dm644 "$pkgname/$pkgname.1" "$pkgdir/usr/share/man/man1/$pkgname.1"
}
|