add opencore-amr (#2767)
* add opencore-amr * remove useless code * opencore-amr support android * opencore-amr: update on_install * opencore-amr: filter plat * Update xmake.lua * opencore-amr: remove pic and cxx logic * Revert "opencore-amr: filter plat" This reverts commitpull/2769/headf5fc99732f
. * Revert "Revert "opencore-amr: filter plat"" This reverts commit626f1e6db1
. * opencore-amr: remove wasm, add mingw * Update xmake.lua --------- Co-authored-by: ruki <waruqi@gmail.com>
parent
bfa415db2c
commit
91f78377d3
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@ |
||||
package("opencore-amr") |
||||
set_homepage("https://opencore-amr.sourceforge.io") |
||||
set_description("Library of OpenCORE Framework implementation of Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.") |
||||
|
||||
add_urls("https://sourceforge.net/projects/opencore-amr/files/opencore-amr/opencore-amr-$(version).tar.gz") |
||||
|
||||
add_versions("0.1.6", "483eb4061088e2b34b358e47540b5d495a96cd468e361050fae615b1809dc4a1") |
||||
|
||||
on_install("linux", "macosx", "android", "iphoneos", "bsd", "cross", "mingw", function (package) |
||||
local configs = {} |
||||
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no")) |
||||
if package:is_debug() then |
||||
table.insert(configs, "--enable-debug") |
||||
end |
||||
import("package.tools.autoconf").install(package, configs) |
||||
end) |
||||
|
||||
on_test(function (package) |
||||
assert(package:has_cfuncs("Decoder_Interface_init", {includes = "opencore-amrnb/interf_dec.h"})) |
||||
assert(package:has_cfuncs("Encoder_Interface_init", {includes = "opencore-amrnb/interf_enc.h"})) |
||||
assert(package:has_cfuncs("D_IF_init", {includes = "opencore-amrwb/dec_if.h"})) |
||||
end) |
Loading…
Reference in new issue