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.
30 lines
1.1 KiB
30 lines
1.1 KiB
2 years ago
|
package("littlefs")
|
||
|
set_homepage("https://github.com/littlefs-project/littlefs")
|
||
|
set_description("A little fail-safe filesystem designed for microcontrollers")
|
||
|
|
||
|
add_urls("https://github.com/littlefs-project/littlefs/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/littlefs-project/littlefs.git")
|
||
|
add_versions("v2.5.0", "07de0d788c2a849a137715b48cce9daeb3fdc7570873ac6faae4566432e140c8")
|
||
|
|
||
|
on_install(function (package)
|
||
|
local configs = {}
|
||
|
io.writefile("xmake.lua", [[
|
||
|
add_rules("mode.release", "mode.debug")
|
||
|
target("littlefs")
|
||
|
set_kind("$(kind)")
|
||
|
add_files("*.c")
|
||
|
add_headerfiles("*.h")
|
||
|
if is_plat("windows") then
|
||
|
add_defines("LFS_NO_ERROR", "LFS_NO_DEBUG", "LFS_NO_WARN")
|
||
|
end
|
||
|
]])
|
||
|
if package:config("shared") then
|
||
|
configs.kind = "shared"
|
||
|
end
|
||
|
import("package.tools.xmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("lfs_mount", {includes = "lfs.h"}))
|
||
|
end)
|