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.
16 lines
510 B
16 lines
510 B
4 years ago
|
package("dr_mp3")
|
||
|
set_homepage("https://github.com/mackron/dr_libs")
|
||
|
set_description("Single file audio decoding libraries for C/C++.")
|
||
|
set_license("MIT")
|
||
|
|
||
|
set_urls("https://github.com/mackron/dr_libs.git")
|
||
|
add_versions("0.6.27", "f357ade3aae55ced341aa7c83b4e7f628f948e51")
|
||
|
|
||
|
on_install(function (package)
|
||
|
os.cp("dr_mp3.h", package:installdir("include"))
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("drmp3_init", {includes = "dr_mp3.h"}))
|
||
|
end)
|