2093053106
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for zlib license is Zlib. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/zlib( )?(license)?/Zlib/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
564 B
Makefile
22 lines
564 B
Makefile
################################################################################
|
|
#
|
|
# sdl_net
|
|
#
|
|
################################################################################
|
|
|
|
SDL_NET_VERSION = 1.2.8
|
|
SDL_NET_SITE = http://www.libsdl.org/projects/SDL_net/release
|
|
SDL_NET_SOURCE = SDL_net-$(SDL_NET_VERSION).tar.gz
|
|
SDL_NET_LICENSE = Zlib
|
|
SDL_NET_LICENSE_FILES = COPYING
|
|
|
|
SDL_NET_CONF_OPTS = \
|
|
--with-sdl-prefix=$(STAGING_DIR)/usr \
|
|
--with-sdl-exec-prefix=$(STAGING_DIR)/usr
|
|
|
|
SDL_NET_INSTALL_STAGING = YES
|
|
|
|
SDL_NET_DEPENDENCIES = sdl
|
|
|
|
$(eval $(autotools-package))
|