mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
extra/bullet to 3.08-2
This commit is contained in:
parent
c7be9180bd
commit
d80181c37c
1 changed files with 9 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
|||
pkgbase=bullet
|
||||
pkgname=('bullet' 'bullet-docs' 'python-pybullet')
|
||||
pkgver=3.08
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games and animation"
|
||||
arch=('x86_64')
|
||||
url="http://www.bulletphysics.com/Bullet/"
|
||||
|
@ -18,6 +18,11 @@ source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archi
|
|||
sha512sums=('4177c2b2f3b007691102973e7a3d4337b8de559d20058db75a2d25eab35b9be62fa14e3362435ef6f7ea2f6b8cf02a78770cc49c17e979adf3a2b41f19ee702a'
|
||||
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
|
||||
|
||||
prepare() {
|
||||
cd bullet3-${pkgver}
|
||||
sed -i '/SET_TARGET_PROPERTIES(pybullet PROPERTIES PREFIX/d' examples/pybullet/CMakeLists.txt
|
||||
}
|
||||
|
||||
build() {
|
||||
cd bullet3-${pkgver}
|
||||
|
||||
|
@ -34,7 +39,8 @@ build() {
|
|||
-DBUILD_BULLET2_DEMOS=OFF \
|
||||
-DBUILD_UNIT_TESTS=OFF \
|
||||
-DBUILD_EXTRAS=OFF \
|
||||
-DCMAKE_BUILD_TYPE=Release
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_SKIP_RPATH=YES
|
||||
|
||||
ninja -C build
|
||||
|
||||
|
@ -54,7 +60,6 @@ package_bullet() {
|
|||
|
||||
cd build
|
||||
|
||||
#install -Dm755 examples/pybullet/pybullet.so.${pkgver} "${pkgdir}"/usr/lib/libpybullet.so.${pkgver}
|
||||
#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
|
||||
|
@ -72,6 +77,7 @@ package_python-pybullet() {
|
|||
|
||||
cd bullet3-${pkgver}
|
||||
|
||||
#install -Dm755 build/examples/pybullet/libpybullet.so.${pkgver} "${pkgdir}"/usr/lib/libpybullet.so.${pkgver}
|
||||
python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
|
||||
|
||||
install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
|
||||
|
|
Loading…
Reference in a new issue