PKGBUILDs/extra/bullet/PKGBUILD

99 lines
3.6 KiB
Bash
Raw Normal View History

2021-12-13 00:34:29 +00:00
# Maintainer: Sven-Hendrik Haase <svenstaro@archlinux.org>
2016-10-13 12:45:42 +00:00
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2020-09-25 03:49:44 +00:00
# - -DBUILD_BULLET2_DEMOS=OFF, -DBUILD_UNIT_TESTS=OFF, -DBUILD_EXTRAS=OFF
2016-10-13 12:45:42 +00:00
pkgbase=bullet
2019-12-15 16:50:57 +00:00
pkgname=('bullet' 'bullet-docs' 'python-pybullet')
2022-05-04 14:17:09 +00:00
pkgver=3.24
_pkgver=3.24
2022-04-11 22:16:37 +00:00
pkgrel=1
2016-10-13 12:45:42 +00:00
pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games and animation"
2018-08-06 12:45:54 +00:00
arch=('x86_64')
2016-10-13 12:45:42 +00:00
url="http://www.bulletphysics.com/Bullet/"
license=('custom:zlib')
2020-09-25 03:02:11 +00:00
makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 'python-numpy' 'python-setuptools' 'ninja')
2022-04-11 22:16:37 +00:00
source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/refs/tags/${_pkgver}.tar.gz"
2017-06-19 12:25:10 +00:00
bullet3_examplebrowser.sh)
2022-05-04 14:17:09 +00:00
sha512sums=('0f8cf009e50853b2ff461414893f09f752774dac3fb51ba158ef670865b61140a13567cadbf7b19d643d24d6207a23f825773edb86234591f83bd19e3fb3d054'
2017-06-19 12:25:10 +00:00
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
2017-02-09 19:16:36 +00:00
2021-02-24 12:57:23 +00:00
prepare() {
2022-04-11 22:16:37 +00:00
cd bullet3-${_pkgver}
2021-02-24 12:57:23 +00:00
sed -i '/SET_TARGET_PROPERTIES(pybullet PROPERTIES PREFIX/d' examples/pybullet/CMakeLists.txt
}
2016-10-13 12:45:42 +00:00
build() {
2022-04-11 22:16:37 +00:00
cd bullet3-${_pkgver}
2020-09-25 03:02:11 +00:00
2021-12-13 00:34:29 +00:00
cmake \
2020-09-25 03:02:11 +00:00
-Bbuild \
-GNinja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_SHARED_LIBS=1 \
-DINSTALL_LIBS=1 \
-DINSTALL_EXTRA_LIBS=1 \
-DBUILD_PYBULLET=ON \
-DBUILD_PYBULLET_NUMPY=ON \
-DBUILD_OPENGL3_DEMOS=ON \
-DBUILD_BULLET2_DEMOS=OFF \
-DBUILD_UNIT_TESTS=OFF \
2020-09-25 03:49:44 +00:00
-DBUILD_EXTRAS=OFF \
2021-02-24 12:57:23 +00:00
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=YES
2020-09-25 03:02:11 +00:00
ninja -C build
2019-12-15 16:50:57 +00:00
python setup.py build
2016-10-13 12:45:42 +00:00
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
2022-04-11 22:16:37 +00:00
cd bullet3-${_pkgver}
2020-09-25 03:02:11 +00:00
DESTDIR="${pkgdir}" ninja -C build install
2016-10-13 12:45:42 +00:00
2020-09-25 03:02:11 +00:00
cd build
2016-10-13 12:45:42 +00:00
2020-09-25 03:49:44 +00:00
#install -Dm755 examples/ExampleBrowser/libBulletExampleBrowserLib.so.${pkgver} "${pkgdir}"/usr/lib/libBulletExampleBrowserLib.so.${pkgver}
#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/
2016-10-13 12:45:42 +00:00
2020-09-25 03:02:11 +00:00
install -Dm644 ../LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgbase}/LICENSE
2016-10-13 12:45:42 +00:00
}
2019-12-15 16:50:57 +00:00
package_python-pybullet() {
pkgdesc="Bullet Python bindings"
2020-09-25 03:02:11 +00:00
depends+=('bullet' 'gcc-libs')
2019-12-15 16:50:57 +00:00
2022-04-11 22:16:37 +00:00
cd bullet3-${_pkgver}
2019-12-15 16:50:57 +00:00
2021-02-24 12:57:23 +00:00
#install -Dm755 build/examples/pybullet/libpybullet.so.${pkgver} "${pkgdir}"/usr/lib/libpybullet.so.${pkgver}
2019-12-15 16:50:57 +00:00
python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
2020-09-25 03:02:11 +00:00
install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
2019-12-15 16:50:57 +00:00
}
2016-10-13 12:45:42 +00:00
package_bullet-docs() {
pkgdesc="Documentation for bullet"
2022-04-11 22:16:37 +00:00
cd bullet3-${_pkgver}
2016-10-13 12:45:42 +00:00
# install docs
2020-09-25 03:02:11 +00:00
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
2016-10-13 12:45:42 +00:00
}
# vim: sw=2 ts=2 et: