mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
extra/bullet to 3.22-1
This commit is contained in:
parent
ca95ced60f
commit
8282834ca0
1 changed files with 10 additions and 11 deletions
|
@ -6,27 +6,26 @@
|
|||
|
||||
pkgbase=bullet
|
||||
pkgname=('bullet' 'bullet-docs' 'python-pybullet')
|
||||
pkgver=3.21
|
||||
# Upstream botched the tag so we're using the actual real commit for this release.
|
||||
_commit=6a59241074720e9df119f2f86bc01765917feb1e
|
||||
pkgrel=2
|
||||
pkgver=3.22
|
||||
_pkgver=3.22b
|
||||
pkgrel=1
|
||||
pkgdesc="A 3D Collision Detection and Rigid Body Dynamics Library for games and animation"
|
||||
arch=('x86_64')
|
||||
url="http://www.bulletphysics.com/Bullet/"
|
||||
license=('custom:zlib')
|
||||
makedepends=('cmake' 'doxygen' 'graphviz' 'ttf-dejavu' 'mesa' 'glu' 'python' 'python-numpy' 'python-setuptools' 'ninja')
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/${_commit}.tar.gz"
|
||||
source=("$pkgname-$pkgver.tar.gz::https://github.com/bulletphysics/bullet3/archive/refs/tags/${_pkgver}.tar.gz"
|
||||
bullet3_examplebrowser.sh)
|
||||
sha512sums=('f262c1c517f17f641d0a991611ca8a0776e34165af438a8a8d2d62a960e6ce3885198718ed7d1f4e9c4c42a497a3b1d7143c526010fd202bcc9efda19fa0e33b'
|
||||
sha512sums=('9e2f3eb78b94de6a11d605f4ab87868f19d5aa8df61b35030c3866d47ae9c3e5cfc56ab57b8752d697c17489599de55f4066125f3e1fcbcbc61eed8821ae3f24'
|
||||
'8741ad94b6c46c226d89aebc8ab06d8a11bac3c04d3f0a2bf7a7524792a3375aa7bf7d295410b16fbeb4c348a31057b4570acdebe9bbaea251f44daca8d9fe81')
|
||||
|
||||
prepare() {
|
||||
cd bullet3-${_commit}
|
||||
cd bullet3-${_pkgver}
|
||||
sed -i '/SET_TARGET_PROPERTIES(pybullet PROPERTIES PREFIX/d' examples/pybullet/CMakeLists.txt
|
||||
}
|
||||
|
||||
build() {
|
||||
cd bullet3-${_commit}
|
||||
cd bullet3-${_pkgver}
|
||||
|
||||
cmake \
|
||||
-Bbuild \
|
||||
|
@ -56,7 +55,7 @@ package_bullet() {
|
|||
'python-numpy: python bindings'
|
||||
'bullet-docs: documentation')
|
||||
|
||||
cd bullet3-${_commit}
|
||||
cd bullet3-${_pkgver}
|
||||
|
||||
DESTDIR="${pkgdir}" ninja -C build install
|
||||
|
||||
|
@ -77,7 +76,7 @@ package_python-pybullet() {
|
|||
pkgdesc="Bullet Python bindings"
|
||||
depends+=('bullet' 'gcc-libs')
|
||||
|
||||
cd bullet3-${_commit}
|
||||
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
|
||||
|
@ -88,7 +87,7 @@ package_python-pybullet() {
|
|||
package_bullet-docs() {
|
||||
pkgdesc="Documentation for bullet"
|
||||
|
||||
cd bullet3-${_commit}
|
||||
cd bullet3-${_pkgver}
|
||||
|
||||
# install docs
|
||||
install -Dm644 docs/GPU_rigidbody_using_OpenCL.pdf "${pkgdir}"/usr/share/doc/bullet/GPU_rigidbody_using_OpenCL.pdf
|
||||
|
|
Loading…
Reference in a new issue