1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package("pthreads4w")
- set_homepage("https://sourceforge.net/projects/pthreads4w/")
- set_description("POSIX Threads for Win32")
- set_urls("https://github.com/xmake-mirror/pthreads4w/archive/$(version).tar.gz",
- "https://github.com/xmake-mirror/pthreads4w.git",
- "https://gitee.com/xmake-mirror/pthreads4w.git")
- add_versions("3.0.0", "31f20963840c26d78fb20224577b7e677018b3eb3000c3570db88528043adc20")
- add_includedirs("include/pthread")
- if is_host("linux", "macosx") and is_plat("mingw") then
- add_deps("autoconf", "automake")
- end
- on_install("windows|x64", "windows|x86", function (package)
- local target = "VC"
- if not package:config("shared") then
- target = target .. "-static"
- end
- if package:debug() then
- target = target .. "-debug"
- end
- import("package.tools.nmake").build(package, {"-f", "Makefile", target})
- os.cp("*.lib", package:installdir("lib"))
- os.cp("*.h", package:installdir("include/pthread"))
- if package:config("shared") then
- os.cp("*.dll", package:installdir("bin"))
- package:addenv("PATH", "bin")
- end
- if package:debug() then
- os.cp("*.pdb", package:installdir("lib"))
- end
- end)
- on_install("mingw@macosx,linux", function (package)
- local configs = {}
- if package:config("shared") then
- table.insert(configs, "--enable-shared=yes")
- else
- table.insert(configs, "--enable-shared=no")
- end
- if package:debug() then
- table.insert(configs, "--enable-debug")
- end
- import("package.tools.autoconf").configure(package, configs)
- local target = "GC"
- if not package:config("shared") then
- target = target .. "-static"
- end
- if package:debug() then
- target = target .. "-debug"
- end
- os.vrunv("make", {"V=1", target})
- end)
- on_test(function (package)
- assert(package:has_cfuncs("pthread_create", {includes = "pthread.h"}))
- end)
|