void-packages/srcpkgs/bullet/template
2020-07-08 16:18:33 +02:00

31 lines
893 B
Bash

# Template file for 'bullet'
pkgname=bullet
version=2.89
revision=1
wrksrc="bullet3-${version}"
build_style=cmake
configure_args="-DBUILD_SHARED_LIBS=1 -DBUILD_BULLET2_DEMOS=0 -DBUILD_CPU_DEMOS=0
-DBUILD_UNIT_TESTS=0 -DBUILD_OPENGL3_DEMOS=0 -DBUILD_EXTRAS=1 -DINSTALL_EXTRA_LIBS=1"
makedepends="glu-devel"
short_desc="3D Collision Detection and Rigid Body Dynamics Library"
maintainer="John <me@johnnynator.dev>"
license="zlib"
homepage="http://www.bulletphysics.com/Bullet/"
distfiles="https://github.com/bulletphysics/bullet3/archive/${version}.tar.gz"
checksum=621b36e91c0371933f3c2156db22c083383164881d2a6b84636759dc4cbb0bb8
post_install() {
vlicense LICENSE.txt
}
bullet-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
vmove usr/lib/pkgconfig
vmove usr/lib/cmake
}
}