openjdk: enable linux (#2894)
* openjdk: enable linux * add dpes alsa-lib * fix deps * fix deps * make deps shared * fix deps * try system lib * revert * force system lib * try pkgconfig * alsa-lib: add config * alsa-lib: fix test * openjdk: make alsa-lib shared * alsa-lib: delete autotool flag * alsa-lib: add config * jnipp: enable linux * alsa-lib: improve config name * openjdk: fix deps configspull/2932/head
parent
c5e50f4ef0
commit
e08905b6b4
3 changed files with 19 additions and 11 deletions
@ -1,26 +1,32 @@ |
||||
package("alsa-lib") |
||||
set_homepage("https://alsa-project.org/wiki/Main_Page") |
||||
set_description("The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality to the Linux operating system.") |
||||
set_license("LGPL-2.1") |
||||
|
||||
set_urls("http://www.alsa-project.org/files/pub/lib/alsa-lib-$(version).tar.bz2") |
||||
add_urls("http://www.alsa-project.org/files/pub/lib/alsa-lib-$(version).tar.bz2", {alias = "home"}) |
||||
add_urls("https://github.com/alsa-project/alsa-lib/archive/refs/tags/v$(version).tar.gz", {alias = "github"}) |
||||
add_versions("home:1.2.10", "c86a45a846331b1b0aa6e6be100be2a7aef92efd405cf6bac7eef8174baa920e") |
||||
add_versions("github:1.2.10", "f55749847fd98274501f4691a2d847e89280c07d40a43cdac43d6443f69fc939") |
||||
|
||||
add_versions("1.2.10", "c86a45a846331b1b0aa6e6be100be2a7aef92efd405cf6bac7eef8174baa920e") |
||||
add_configs("versioned", {description = "pass flag --without-versioned", default = true, type = "boolean"}) |
||||
|
||||
if is_plat("linux") then |
||||
add_extsources("pacman::alsa-lib", "apt::libasound2-dev") |
||||
end |
||||
|
||||
on_install("linux", function (package) |
||||
local configs = {"--without-versioned"} |
||||
local configs = {} |
||||
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 package:is_debug() then |
||||
table.insert(configs, "--enable-debug") |
||||
end |
||||
if package:config("versioned")then |
||||
table.insert(configs, "--without-versioned") |
||||
end |
||||
import("package.tools.autoconf").install(package, configs) |
||||
end) |
||||
|
||||
on_test(function (package) |
||||
assert(package:check_csnippets({test = [[ |
||||
void test() { |
||||
snd_ctl_card_info_t *info; |
||||
snd_ctl_card_info_alloca(&info); |
||||
} |
||||
]]}, {includes = {"alsa/asoundlib.h"}})) |
||||
assert(package:has_cfuncs("snd_pcm_open", {includes = "alsa/asoundlib.h"})) |
||||
end) |
||||
|
Loading…
Reference in new issue