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.
26 lines
1.2 KiB
26 lines
1.2 KiB
package("osip") |
|
set_homepage("https://savannah.gnu.org/projects/osip") |
|
set_description("oSIP is an LGPL implementation of SIP. It is used mostly with eXosip2 stack (GPL) which provides simpler API for User-Agent implementation.") |
|
set_license("LGPL") |
|
|
|
add_urls("https://git.savannah.gnu.org/cgit/osip.git/snapshot/osip-$(version).tar.gz", |
|
"https://git.savannah.gnu.org/git/osip.git") |
|
|
|
add_versions("5.3.0", "593c9d61150b230f7e757b652d70d5fe336c84db7e4db190658f9ef1597d59ed") |
|
|
|
add_deps("autoconf", "automake", "m4", "libtool") |
|
add_links("osip2", "osipparser2") |
|
|
|
on_install("linux", "macosx", function (package) |
|
local configs = {"--disable-trace"} |
|
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no")) |
|
table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes")) |
|
if not package:debug() then |
|
table.insert(configs, "--disable-debug") |
|
end |
|
import("package.tools.autoconf").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("osip_cond_signal", {includes = "osip2/osip_condv.h"})) |
|
end)
|
|
|