desktop/bullet/PKGBUILD

69 lines
2.5 KiB
Bash
Raw Normal View History

pkgbase=bullet
pkgname=('bullet' 'bullet-doc')
2018-10-08 11:26:11 +08:00
pkgver=2.87
pkgrel=1
2011-10-10 04:26:28 +08:00
pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games and animation"
2016-05-14 21:09:42 +08:00
arch=('x86_64')
2011-02-23 05:39:01 +08:00
url="http://www.bulletphysics.com/Bullet/"
2018-10-08 11:26:11 +08:00
license=('custom:zlib')
makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python3' 'python3-numpy')
source=("https://github.com/bulletphysics/bullet3/archive/${pkgver}.tar.gz"
bullet3_examplebrowser.sh)
sha256sums=('438c151c48840fe3f902ec260d9496f8beb26dba4b17769a4a53212903935f95'
'68ca940af489f7e9718fe9199cf0c3428c8e4d2b4ae1576847fffe56c0da50f7')
2011-02-23 05:39:01 +08:00
build() {
2018-10-08 11:38:38 +08:00
cd bullet3-${pkgver}
2011-02-23 05:39:01 +08:00
[[ -d build ]] && rm -rf build
mkdir build && cd build
2011-02-23 05:39:01 +08:00
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
2016-05-14 21:09:42 +08:00
-DBUILD_SHARED_LIBS=1 \
-DINSTALL_LIBS=1 \
-DINSTALL_EXTRA_LIBS=1 \
2018-10-08 11:26:11 +08:00
-DBUILD_PYBULLET=ON \
-DBUILD_PYBULLET_NUMPY=ON \
-DBUILD_OPENGL3_DEMOS=ON \
-DCMAKE_BUILD_TYPE=Release
2011-02-23 05:39:01 +08:00
make
2018-10-08 11:26:11 +08:00
2011-02-23 05:39:01 +08:00
cd ..
doxygen
}
package_bullet() {
2018-10-08 11:26:11 +08:00
optdepends=('glu: for the example browser'
'python3: python bindings'
'python3-numpy: python bindings'
'bullet-docs: documentation')
cd bullet3-${pkgver}/build
make DESTDIR=${pkgdir} install
install -Dm755 examples/pybullet/pybullet.so.${pkgver} ${pkgdir}/usr/lib/libpybullet.so.${pkgver}
2018-10-08 11:49:47 +08:00
install -Dm755 examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} ${pkgdir}/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
2018-10-08 11:26:11 +08:00
install -Dm755 examples/OpenGLWindow/libOpenGLWindow.so ${pkgdir}/usr/lib/libOpenGLWindow.so
install -Dm755 examples/ThirdPartyLibs/Gwen/libgwen.so ${pkgdir}/usr/lib/libgwen.so
install -Dm755 examples/ThirdPartyLibs/BussIK/libBussIK.so ${pkgdir}/usr/lib/libBussIK.so
install -Dm755 ${srcdir}/bullet3_examplebrowser.sh ${pkgdir}/usr/bin/bullet3_examplebrowser
install -Dm755 examples/ExampleBrowser/App_ExampleBrowser ${pkgdir}/opt/bullet/App_ExampleBrowser
cp -r data ${pkgdir}/opt/bullet/
# install license
install -Dm644 ../LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgbase}/LICENSE
}
2011-02-23 05:39:01 +08:00
package_bullet-doc() {
2018-10-08 11:26:11 +08:00
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
2011-02-23 05:39:01 +08:00
}