blob: 191b8dfcd1db5b5b3b35b72071b5a8eab1b39a74 (
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
|
# Maintainer: Guilhem Saurel <guilhem.saurel@laas.fr>
_org='humanoid-path-planner'
_pkgname=hpp-statistics
_pkgver=5.0.0
pkgname="$_pkgname-git"
pkgver=5.0.0.r174.3114940
pkgrel=1
pkgdesc="This package is part of the HPP software and provides a few tools for basic statistics. Devel branch."
arch=('i686' 'x86_64')
url="https://github.com/$_org/$_pkgname"
license=('BSD-2-Clause')
depends=('boost-libs' 'gcc-libs' 'glibc' 'hpp-util')
makedepends=('cmake' 'git' 'doxygen' 'boost')
conflicts=($_pkgname)
provides=($_pkgname)
source=("$_pkgname"::"git+$url.git")
sha256sums=('SKIP')
pkgver() {
echo "$_pkgver.r$(git -C "$_pkgname" rev-list --count HEAD).$(git rev-parse --short HEAD)"
}
prepare() {
git -C "$_pkgname" checkout devel
git -C "$_pkgname" submodule update --init --recursive
}
build() {
cmake -B build -S $_pkgname \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_DOCUMENTATION=ON \
-Wno-dev
cmake --build build
}
check() {
cmake --build build -t test
}
package() {
DESTDIR="$pkgdir/" cmake --build build -t install
install -Dm644 "$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|