mxe/src/sdl2.mk

36 lines
1.3 KiB
Makefile
Raw Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2013-07-27 09:46:58 +01:00
PKG := sdl2
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.0.5
$(PKG)_CHECKSUM := 442038cf55965969f2ff06d976031813de643af9c9edc9e331bd761c242e8785
2013-07-27 09:46:58 +01:00
$(PKG)_SUBDIR := SDL2-$($(PKG)_VERSION)
$(PKG)_FILE := SDL2-$($(PKG)_VERSION).tar.gz
2013-08-12 17:37:15 +01:00
$(PKG)_URL := http://www.libsdl.org/release/$($(PKG)_FILE)
2013-07-27 09:46:58 +01:00
$(PKG)_DEPS := gcc libiconv
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://hg.libsdl.org/SDL/tags' | \
$(SED) -n 's,.*release-\([0-9][^<]*\).*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && aclocal -I acinclude && autoconf && ./configure \
$(MXE_CONFIGURE_OPTS) \
2013-07-27 09:46:58 +01:00
--enable-threads \
--enable-directx
$(SED) -i 's,defined(__MINGW64_VERSION_MAJOR),defined(__MINGW64_VERSION_MAJOR) \&\& defined(_WIN64),' '$(1)/include/SDL_cpuinfo.h'
$(SED) -i 's,-XCClinker,,' '$(1)/sdl2.pc'
$(SED) -i 's,-XCClinker,,' '$(1)/sdl2-config'
$(MAKE) -C '$(1)' -j '$(JOBS)'
$(MAKE) -C '$(1)' -j 1 install
2013-07-27 09:46:58 +01:00
ln -sf '$(PREFIX)/$(TARGET)/bin/sdl2-config' '$(PREFIX)/bin/$(TARGET)-sdl2-config'
2016-03-03 13:39:57 +00:00
'$(TARGET)-gcc' \
-W -Wall -Werror -ansi -pedantic \
'$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-sdl2.exe' \
2016-03-03 13:39:57 +00:00
`'$(TARGET)-pkg-config' sdl2 --cflags --libs`
2013-07-27 09:46:58 +01:00
endef