generated from gaoyang3513/SDK_RK3288
[Mod] First commit
This commit is contained in:
10
package/sdl2_gfx/Config.in
Normal file
10
package/sdl2_gfx/Config.in
Normal file
@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_SDL2_GFX
|
||||
bool "sdl2_gfx"
|
||||
depends on BR2_PACKAGE_SDL2
|
||||
help
|
||||
The SDL2_gfx library is an extension to the SDL2 library
|
||||
which provides basic antialiased drawing routines such as
|
||||
lines, circles or polygons, an interpolating rotozoomer for
|
||||
SDL surfaces, framerate control and MMX image filters.
|
||||
|
||||
http://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx
|
||||
4
package/sdl2_gfx/sdl2_gfx.hash
Normal file
4
package/sdl2_gfx/sdl2_gfx.hash
Normal file
@ -0,0 +1,4 @@
|
||||
# Locally calculated
|
||||
sha256 63e0e01addedc9df2f85b93a248f06e8a04affa014a835c2ea34bfe34e576262 SDL2_gfx-1.0.4.tar.gz
|
||||
sha256 ec9036525fe1adde787041cce6c4b7fbb262863c238bb9051037e29a57e27bfc COPYING
|
||||
sha256 18e6fad60b809b0e30bd2576a0d33c179ca2ac694504a849d05b6579e3c481dd SDL2_framerate.h
|
||||
27
package/sdl2_gfx/sdl2_gfx.mk
Normal file
27
package/sdl2_gfx/sdl2_gfx.mk
Normal file
@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
#
|
||||
# sdl2_gfx
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SDL2_GFX_VERSION = 1.0.4
|
||||
SDL2_GFX_SOURCE = SDL2_gfx-$(SDL2_GFX_VERSION).tar.gz
|
||||
SDL2_GFX_SITE = http://www.ferzkopp.net/Software/SDL2_gfx
|
||||
SDL2_GFX_LICENSE = Zlib
|
||||
SDL2_GFX_LICENSE_FILES = COPYING SDL2_framerate.h
|
||||
SDL2_GFX_INSTALL_STAGING = YES
|
||||
SDL2_GFX_DEPENDENCIES = sdl2 host-pkgconf
|
||||
SDL2_GFX_CONF_OPTS = --disable-sdltest
|
||||
# configure/Makefile.in not up-to-date, causing aclocal to be used at
|
||||
# build time if we don't autoreconf.
|
||||
SDL2_GFX_AUTORECONF = YES
|
||||
|
||||
# Even though x86_64 processors support MMX, the MMX-specific assembly
|
||||
# code in sdl2_gfx is IA32 specific, and does not build for x86_64.
|
||||
ifeq ($(BR2_i386)$(BR2_X86_CPU_HAS_MMX),yy)
|
||||
SDL2_GFX_CONF_OPTS += --enable-mmx
|
||||
else
|
||||
SDL2_GFX_CONF_OPTS += --disable-mmx
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user