blob: 400e991575cdc230a210dd22e31c589e61ee9d05 (
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
|
# Maintainer: oysstu <oysstu at gmail dot com>
pkgname=gz-physics6
pkgver=6.6.0
pkgrel=1
_pkgmaj=${pkgver%%.*}
_pkgbase=${pkgname::-${#_pkgmaj}}
pkgdesc="Abstract physics interface designed to support simulation and rapid development of robot applications."
arch=('any')
url="https://github.com/gazebosim/${_pkgbase}"
license=('Apache')
depends=(
'eigen'
'gz-common=5'
'gz-math=7'
'gz-plugin=2'
'gz-utils=2'
'sdformat=13'
'bullet'
'libdart'
)
makedepends=(
'cmake'
'doxygen'
'gz-cmake=3'
)
optdepends=(
#'libdart: DARTsim physics plugin'
#'bullet: bullet physics plugin'
)
provides=("${_pkgbase}=${_pkgmaj}")
source=("https://github.com/gazebosim/${_pkgbase}/archive/${pkgname}_${pkgver}.tar.gz")
sha256sums=('1304e1f9ef66608fed765b110d7c5022359dd93cc499d6a7b884eb8e34df45cb')
_build_dir="${_pkgbase}-${pkgname}_${pkgver}/build"
build() {
mkdir -p "$srcdir/$_build_dir" && cd $_
cmake .. -DCMAKE_BUILD_TYPE='None' \
-DCMAKE_INSTALL_PREFIX='/usr' \
-DBUILD_TESTING=OFF \
-Wno-dev
cmake --build .
}
package() {
DESTDIR="$pkgdir" cmake --install "$srcdir/$_build_dir"
}
|