package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.1 KiB

6 years ago
package("libsdl")
set_homepage("https://www.libsdl.org/")
set_description("Simple DirectMedia Layer")
5 years ago
if is_plat("windows", "mingw") then
6 years ago
set_urls("https://www.libsdl.org/release/SDL2-devel-$(version)-VC.zip")
add_versions("2.0.8", "68505e1f7c16d8538e116405411205355a029dcf2df738dbbc768b2fe95d20fd")
add_versions("2.0.12", "00c55a597cebdb9a4eb2723f2ad2387a4d7fd605e222c69b46099b15d5d8b32d")
6 years ago
else
set_urls("https://www.libsdl.org/release/SDL2-$(version).zip")
add_versions("2.0.8", "e6a7c71154c3001e318ba7ed4b98582de72ff970aca05abc9f45f7cbdc9088cb")
add_versions("2.0.12", "476e84d6fcbc499cd1f4a2d3fd05a924abc165b5d0e0d53522c9604fe5a021aa")
6 years ago
end
5 years ago
if is_plat("macosx") then
add_frameworks("OpenGL", "CoreVideo", "CoreAudio", "AudioToolbox", "Carbon", "CoreGraphics", "ForceFeedback", "Metal", "AppKit", "IOKit", "CoreFoundation", "Foundation")
add_syslinks("iconv")
elseif is_plat("linux") then
add_syslinks("pthread", "dl")
elseif is_plat("windows", "mingw") then
add_syslinks("gdi32", "user32", "winmm", "shell32")
end
5 years ago
add_links("SDL2main", "SDL2")
4 years ago
add_includedirs("include", "include/SDL2")
5 years ago
on_install("windows", "mingw", function (package)
local arch = package:arch()
5 years ago
if package:is_plat("mingw") then
arch = (arch == "x86_64") and "x64" or "x86"
5 years ago
end
os.cp("include/*", package:installdir("include/SDL2"))
os.cp(path.join("lib", arch, "*.lib"), package:installdir("lib"))
os.cp(path.join("lib", arch, "*.dll"), package:installdir("lib"))
6 years ago
end)
on_install("macosx", "linux", function (package)
5 years ago
local configs = {}
if package:config("shared") then
table.insert(configs, "--enable-shared=yes")
else
table.insert(configs, "--enable-shared=no")
end
import("package.tools.autoconf").install(package, configs)
end)
on_test(function (package)
5 years ago
local configs = package:is_plat("windows") and {ldflags = "/SUBSYSTEM:CONSOLE"}
assert(package:has_cfuncs("SDL_Init", {includes = "SDL2/SDL.h", configs = configs}))
6 years ago
end)