[arch-commits] Commit in bullet/trunk (PKGBUILD)

Sven-Hendrik Haase svenstaro at archlinux.org
Wed Feb 24 10:43:29 UTC 2021


    Date: Wednesday, February 24, 2021 @ 10:43:29
  Author: svenstaro
Revision: 408712

upgpkg: bullet 3.08-2: Remove RPATH and fix SONAME of pybullet

Also move pybullet to python-pybullet package as it should have been there anyway.

Modified:
  bullet/trunk/PKGBUILD

----------+
 PKGBUILD |   12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-02-24 09:25:11 UTC (rev 408711)
+++ PKGBUILD	2021-02-24 10:43:29 UTC (rev 408712)
@@ -4,7 +4,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/"
@@ -15,6 +15,11 @@
 sha512sums=('4177c2b2f3b007691102973e7a3d4337b8de559d20058db75a2d25eab35b9be62fa14e3362435ef6f7ea2f6b8cf02a78770cc49c17e979adf3a2b41f19ee702a'
             '8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
 
+prepare() {
+  cd bullet3-${pkgver}
+  sed -i '/SET_TARGET_PROPERTIES(pybullet PROPERTIES PREFIX/d' examples/pybullet/CMakeLists.txt
+}
+
 build() {
   cd bullet3-${pkgver}
 
@@ -28,7 +33,8 @@
       -DBUILD_PYBULLET=ON \
       -DBUILD_PYBULLET_NUMPY=ON \
       -DBUILD_OPENGL3_DEMOS=ON \
-      -DCMAKE_BUILD_TYPE=Release
+      -DCMAKE_BUILD_TYPE=Release \
+      -DCMAKE_SKIP_RPATH=YES
 
   ninja -C build
 
@@ -48,7 +54,6 @@
 
   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
@@ -66,6 +71,7 @@
 
   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



More information about the arch-commits mailing list