mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 15:33:28 +08:00
e2f4ac35fe
Fixes:
http://autobuild.buildroot.net/results/37e5075a5c790d5c96bdc72c44d4362a16ae00bb/
Commit b41ff7dd46
(package/sdl2_net: bump version to 2.2.0) forgot to
update the license hash / filename, breaking the build.
Upstream renamed COPYING.txt to LICENSE.txt, changed white space and updated
the copyright years, so update the hash to match:
diff -uw sdl2_net-2.0.1/COPYING.txt sdl2_net-2.2.0/LICENSE.txt
--- sdl2_net-2.0.1/COPYING.txt 2016-01-03 08:57:09.000000000 +0100
+++ sdl2_net-2.2.0/LICENSE.txt 2022-08-17 18:55:22.000000000 +0200
@@ -1,6 +1,4 @@
-/*
- SDL_net: An example cross-platform network library for use with SDL
- Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
+Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
@@ -17,4 +15,4 @@
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
-*/
+
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
16 lines
484 B
Makefile
16 lines
484 B
Makefile
################################################################################
|
|
#
|
|
# sdl2_net
|
|
#
|
|
################################################################################
|
|
|
|
SDL2_NET_VERSION = 2.2.0
|
|
SDL2_NET_SOURCE = SDL2_net-$(SDL2_NET_VERSION).tar.gz
|
|
SDL2_NET_SITE = http://www.libsdl.org/projects/SDL_net/release
|
|
SDL2_NET_LICENSE = Zlib
|
|
SDL2_NET_LICENSE_FILES = LICENSE.txt
|
|
SDL2_NET_INSTALL_STAGING = YES
|
|
SDL2_NET_DEPENDENCIES = sdl2 host-pkgconf
|
|
|
|
$(eval $(autotools-package))
|