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.
31 lines
1.4 KiB
31 lines
1.4 KiB
package("leveldb") |
|
|
|
set_homepage("https://github.com/google/leveldb") |
|
set_description("LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.") |
|
|
|
add_urls("https://github.com/google/leveldb/archive/$(version).tar.gz", |
|
"https://github.com/google/leveldb.git") |
|
add_versions("1.22", "55423cac9e3306f4a9502c738a001e4a339d1a38ffbee7572d4a07d5d63949b2") |
|
|
|
add_deps("cmake") |
|
if is_plat("linux") then |
|
add_syslinks("pthread") |
|
end |
|
|
|
on_install("macosx", "linux", "windows", "mingw", function (package) |
|
local configs = {"-DLEVELDB_BUILD_TESTS=OFF", "-DLEVELDB_BUILD_BENCHMARKS=OFF"} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
void test() { |
|
leveldb::DB* db; |
|
leveldb::Options options; |
|
options.create_if_missing = true; |
|
leveldb::Status status = leveldb::DB::Open(options, "./test", &db); |
|
} |
|
]]}, {configs = {languages = "c++11"}, includes = "leveldb/db.h"})) |
|
end)
|
|
|