PKGBUILDs/extra/bullet/PKGBUILD

75 lines
2.2 KiB
Bash
Raw Normal View History

2016-10-13 12:45:42 +00:00
# $Id$
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - add -fsigned-char to cxxflags
pkgbase=bullet
pkgname=('bullet' 'bullet-docs')
2016-10-16 03:35:33 +00:00
pkgver=2.85.1
2016-10-13 12:45:42 +00:00
pkgrel=1
pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games and animation"
arch=('i686' 'x86_64')
url="http://www.bulletphysics.com/Bullet/"
license=('custom:zlib')
2016-10-16 03:35:33 +00:00
makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 'python-numpy')
2016-10-13 12:45:42 +00:00
source=("https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz")
2016-10-16 03:35:33 +00:00
md5sums=('194cf1ef1eeb7fa9ac7dc580219d3c8b')
2016-10-13 12:45:42 +00:00
build() {
cd bullet3-${pkgver}
CXXFLAGS+=" -fsigned-char"
[[ -d build ]] && rm -rf build
mkdir build && cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_SHARED_LIBS=1 \
-DINSTALL_LIBS=1 \
-DINSTALL_EXTRA_LIBS=1 \
2016-10-16 03:35:33 +00:00
-DBUILD_PYBULLET=ON \
-DBUILD_PYBULLET_NUMPY=ON \
-DBUILD_OPENGL3_DEMOS=ON \
2016-10-13 12:45:42 +00:00
-DCMAKE_BUILD_TYPE=Release
make
cd ..
#sed -i 's/GENERATE_HTMLHELP.*//g' Doxyfile
doxygen
}
package_bullet() {
2016-10-16 03:35:33 +00:00
optdepends=('glu: for the example browser'
'python: python bindings'
'python-numpy: python bindings'
'bullet-docs: documentation')
2016-10-13 12:45:42 +00:00
cd bullet3-${pkgver}/build
make DESTDIR=${pkgdir} install
2016-10-16 03:35:33 +00:00
install -Dm755 examples/pybullet/libpybullet.so.2.85 ${pkgdir}/usr/lib/libpybullet.so.2.85
2016-10-13 12:45:42 +00:00
install -Dm755 examples/ExampleBrowser/App_ExampleBrowser ${pkgdir}/usr/bin/bullet3_examplebrowser
# install license
install -Dm644 ../LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE
}
package_bullet-docs() {
pkgdesc="Documentation for bullet"
depends=()
cd bullet3-${pkgver}
# install docs
install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf ${pkgdir}/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
install -Dm644 docs/Bullet_User_Manual.pdf ${pkgdir}/usr/share/doc/bullet/Bullet_User_Manual.pdf
install -Dm644 docs/BulletQuickstart.pdf ${pkgdir}/usr/share/doc/bullet/BulletQuickstart.pdf
2016-10-16 03:35:33 +00:00
cp -r html ${pkgdir}/usr/share/doc/bullet/html
2016-10-13 12:45:42 +00:00
}
# vim: sw=2 ts=2 et: