chipmunk: new package
Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [Thomas: use BUILD_SHARED, BUILD_STATIC and INSTALL_STATIC options.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
989470cf14
commit
5c599c0739
@ -706,6 +706,7 @@ F: board/olimex/a20_olinuxino
|
||||
F: configs/olimex_a20_olinuxino_*
|
||||
F: package/4th/
|
||||
F: package/botan/
|
||||
F: pacakge/chipmunk/
|
||||
F: package/dado/
|
||||
F: package/ficl/
|
||||
F: package/gdbm/
|
||||
|
@ -1126,6 +1126,7 @@ menu "Graphics"
|
||||
source "package/bullet/Config.in"
|
||||
source "package/cairo/Config.in"
|
||||
source "package/cairomm/Config.in"
|
||||
source "package/chipmunk/Config.in"
|
||||
source "package/exiv2/Config.in"
|
||||
source "package/fltk/Config.in"
|
||||
source "package/fontconfig/Config.in"
|
||||
|
12
package/chipmunk/Config.in
Normal file
12
package/chipmunk/Config.in
Normal file
@ -0,0 +1,12 @@
|
||||
|
||||
comment "chipmunk needs an OpenGL backend"
|
||||
depends on !BR2_PACKAGE_HAS_LIBGL
|
||||
|
||||
config BR2_PACKAGE_CHIPMUNK
|
||||
bool "chipmunk"
|
||||
depends on BR2_PACKAGE_HAS_LIBGL
|
||||
help
|
||||
Chipmunk2D is a simple, lightweight, fast and portable 2D
|
||||
rigid body physics library written in C.
|
||||
|
||||
http://chipmunk-physics.net/
|
5
package/chipmunk/chipmunk.hash
Normal file
5
package/chipmunk/chipmunk.hash
Normal file
@ -0,0 +1,5 @@
|
||||
# Locally calculated
|
||||
sha256 6b6d8d5d910c4442fb9c8c4c46a178126d8c21d075cdb3ce439a7f8d8757b0ca Chipmunk-7.0.2.tar.gz
|
||||
|
||||
# Hash for license file:
|
||||
sha256 109cedb0301cba4e05fa99241f162bdad015c9541ae84b420b0148ac1ea588e2 LICENSE.txt
|
28
package/chipmunk/chipmunk.mk
Normal file
28
package/chipmunk/chipmunk.mk
Normal file
@ -0,0 +1,28 @@
|
||||
################################################################################
|
||||
#
|
||||
# chipmunk
|
||||
#
|
||||
################################################################################
|
||||
|
||||
CHIPMUNK_VERSION = 7.0.2
|
||||
CHIPMUNK_SITE = https://github.com/slembcke/Chipmunk2D/archive
|
||||
CHIPMUNK_SOURCE = Chipmunk-$(CHIPMUNK_VERSION).tar.gz
|
||||
CHIPMUNK_INSTALL_STAGING = YES
|
||||
CHIPMUNK_LICENSE = MIT
|
||||
CHIPMUNK_LICENSE_FILES = LICENSE.txt
|
||||
CHIPMUNK_DEPENDENCIES = libgl
|
||||
CHIPMUNK_CONF_OPTS = -DBUILD_DEMOS=OFF
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
|
||||
CHIPMUNK_CONF_OPTS += -DBUILD_STATIC=ON -DINSTALL_STATIC=ON
|
||||
else
|
||||
CHIPMUNK_CONF_OPTS += -DBUILD_STATIC=OFF -DINSTALL_STATIC=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y)
|
||||
CHIPMUNK_CONF_OPTS += -DBUILD_SHARED=ON
|
||||
else
|
||||
CHIPMUNK_CONF_OPTS += -DBUILD_SHARED=OFF
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
Loading…
Reference in New Issue
Block a user