SDL_net: add new package SDL_net
This patch adds a new package SDL_net. SDL_net is a small, low-level, cross-platform network library, that can be used with the Simple DirectMedia Layer library (SDL). http://www.libsdl.org/projects/SDL_net/ Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
This commit is contained in:
parent
1a66c6c547
commit
e40448aa34
@ -320,6 +320,7 @@ source "package/pixman/Config.in"
|
||||
source "package/sdl/Config.in"
|
||||
source "package/sdl_image/Config.in"
|
||||
source "package/sdl_mixer/Config.in"
|
||||
source "package/sdl_net/Config.in"
|
||||
source "package/sdl_ttf/Config.in"
|
||||
source "package/tiff/Config.in"
|
||||
|
||||
|
8
package/sdl_net/Config.in
Normal file
8
package/sdl_net/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_SDL_NET
|
||||
bool "SDL_net"
|
||||
depends on BR2_PACKAGE_SDL
|
||||
help
|
||||
SDL_net is a small, low-level, cross-platform network library, that
|
||||
can be used with the Simple DirectMedia Layer library (SDL).
|
||||
|
||||
http://www.libsdl.org/projects/SDL_net/
|
20
package/sdl_net/sdl_net.mk
Normal file
20
package/sdl_net/sdl_net.mk
Normal file
@ -0,0 +1,20 @@
|
||||
#############################################################
|
||||
#
|
||||
# SDL_net: network addon for SDL
|
||||
#
|
||||
#############################################################
|
||||
SDL_NET_VERSION:=1.2.7
|
||||
SDL_NET_SITE:=http://www.libsdl.org/projects/SDL_net/release
|
||||
|
||||
SDL_NET_CONF_OPT = --localstatedir=/var \
|
||||
--with-sdl-prefix=$(STAGING_DIR)/usr \
|
||||
--with-sdl-exec-prefix=$(STAGING_DIR)/usr
|
||||
|
||||
SDL_NET_INSTALL_STAGING = YES
|
||||
SDL_NET_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
|
||||
|
||||
SDL_NET_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
||||
|
||||
SDL_NET_DEPENDENCIES = sdl
|
||||
|
||||
$(eval $(call AUTOTARGETS,package,SDL_net))
|
Loading…
Reference in New Issue
Block a user