mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added extra/bullet
This commit is contained in:
parent
e4ca60192e
commit
ccebe16cd7
1 changed files with 69 additions and 0 deletions
69
extra/bullet/PKGBUILD
Normal file
69
extra/bullet/PKGBUILD
Normal file
|
@ -0,0 +1,69 @@
|
|||
# $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')
|
||||
pkgver=2.84
|
||||
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')
|
||||
makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu')
|
||||
optdepends=('glu: for the example browser')
|
||||
source=("https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz")
|
||||
md5sums=('ba7026defc08c666cf4391bbe1f05e1b')
|
||||
|
||||
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 \
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
make
|
||||
|
||||
cd ..
|
||||
#sed -i 's/GENERATE_HTMLHELP.*//g' Doxyfile
|
||||
doxygen
|
||||
}
|
||||
|
||||
package_bullet() {
|
||||
optdepends=('bullet-docs: documentation')
|
||||
|
||||
cd bullet3-${pkgver}/build
|
||||
|
||||
# install it
|
||||
make DESTDIR=${pkgdir} install
|
||||
|
||||
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
|
||||
cp -r html ${pkgdir}/usr/share/doc/bullet/html
|
||||
}
|
||||
# vim: sw=2 ts=2 et:
|
Loading…
Reference in a new issue