Commit e40448aa authored by Hans-Christian Egtvedt's avatar Hans-Christian Egtvedt
Browse files

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: default avatarHans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
parent 1a66c6c5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
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 −0
Original line number Diff line number Diff line
#############################################################
#
# 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))