mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 11:48:06 +01:00
30 lines
844 B
Plaintext
30 lines
844 B
Plaintext
easyblock = 'CMakeMake'
|
|
|
|
name = 'Bullet'
|
|
version = '2.83.7'
|
|
|
|
homepage = "http://bulletphysics.org/"
|
|
description = """Bullet professional 3D Game Multiphysics Library provides state
|
|
of the art collision detection, soft body and rigid body dynamics."""
|
|
|
|
toolchain = {'name': 'foss', 'version': '2016a'}
|
|
toolchainopts = {'usempi': False, 'pic': True}
|
|
|
|
source_urls = ['https://github.com/bulletphysics/bullet3/archive/']
|
|
sources = ["%(version)s.tar.gz"]
|
|
|
|
builddependencies = [('CMake', '3.5.2')]
|
|
|
|
# build shared libraries
|
|
configopts = "-DBUILD_SHARED_LIBS=ON"
|
|
|
|
sanity_check_paths = {
|
|
'files': ['include/bullet/btBullet%sCommon.h' % x for x in ['Collision', 'Dynamics']]
|
|
+ ['lib/libBullet%s.%s' % (x,SHLIB_EXT) for x in ['Collision', 'Dynamics']],
|
|
'dirs': [],
|
|
}
|
|
|
|
modextrapaths = {'CPATH': 'include/bullet'}
|
|
|
|
moduleclass = 'phys'
|