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 commit f5fc99732f.

* Revert "Revert "opencore-amr: filter plat""

This reverts commit 626f1e6db1.

* opencore-amr: remove wasm, add mingw

* Update xmake.lua

---------

Co-authored-by: ruki <waruqi@gmail.com>
pull/2769/head
elkPi 1 year ago committed by GitHub
parent bfa415db2c
commit 91f78377d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      packages/o/opencore-amr/xmake.lua

@ -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…
Cancel
Save