improve libusb (#1641)

* improve libusb

* Update xmake.lua
pull/1642/head
ruki 2 years ago committed by GitHub
parent 59c6612475
commit a07053e7a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      packages/l/libusb/xmake.lua

@ -25,7 +25,7 @@ package("libusb")
if is_plat("macosx") then if is_plat("macosx") then
add_frameworks("CoreFoundation", "IOKit") add_frameworks("CoreFoundation", "IOKit")
elseif is_plat("linux") then elseif is_plat("linux", "bsd") then
add_syslinks("pthread") add_syslinks("pthread")
end end
@ -84,13 +84,10 @@ package("libusb")
end end
end) end)
on_install("macosx", "linux", function (package) on_install("macosx", "linux", "bsd", function (package)
local configs = {} local configs = {}
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no")) table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no"))
table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes")) table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes"))
if package:config("pic") ~= false then
table.insert(configs, "--with-pic")
end
local cflags, ldflags local cflags, ldflags
if package:is_plat("linux") then if package:is_plat("linux") then
cflags = "-I" .. package:dep("eudev"):installdir("include") cflags = "-I" .. package:dep("eudev"):installdir("include")

Loading…
Cancel
Save