remove gcc for MacOS in conan.yml
[liba.git] / lua / liba-dev-1.rockspec
blob44d1be2ac3b3edc2a60adcbabd113d662d2a651f
1 package = "liba"
2 version = "dev-1"
3 source = {
4    url = "https://github.com/tqfx/liba/archive/main.tar.gz",
5    dir = "liba-main"
7 description = {
8    summary = "An algorithm library based on C/C++",
9    homepage = "https://github.com/tqfx/liba",
10    maintainer = "tqfx <tqfx@tqfx.org>",
11    license = "MPL-2.0"
13 build = {
14    type = "cmake",
15    variables = {
16       BUILD_TESTING=0,
17       CMAKE_BUILD_TYPE="Release",
18       CMAKE_INSTALL_PREFIX="$(PREFIX)",
19       LUA_INCLUDE_DIR="$(LUA_INCDIR)",
20       LIBA_INSTALL="lua",
21       LIBA_LUA=1,
22       LIBA_IPO=1,
23       LIBA_CXX=0
24    },
25    copy_directories = {}