Browse Source

add packages

ruki 4 years ago
parent
commit
6f51f3f368

+ 9 - 3
_sidebar.md

@@ -1,4 +1,10 @@
 - Packages
 - Packages
-
-  - [a](packages/a.md)
-
+  - [msys](packages/msys.md)
+  - [android](packages/android.md)
+  - [bsd](packages/bsd.md)
+  - [iphoneos](packages/iphoneos.md)
+  - [macosx](packages/macosx.md)
+  - [mingw](packages/mingw.md)
+  - [cross](packages/cross.md)
+  - [linux](packages/linux.md)
+  - [windows](packages/windows.md)

+ 102 - 1
build.lua

@@ -1,3 +1,6 @@
+-- imports
+import("devel.git")
+
 function mtime(file)
 function mtime(file)
     return os.date("%Y-%m-%dT%H:%M:%S+08:00", os.mtime(file))
     return os.date("%Y-%m-%dT%H:%M:%S+08:00", os.mtime(file))
 end
 end
@@ -145,7 +148,7 @@ end
 --
 --
 -- Or use showdown-cli https://github.com/showdownjs/showdown
 -- Or use showdown-cli https://github.com/showdownjs/showdown
 --
 --
-function main()
+function build_mirror_files()
     local siteroot = "https://xrepo.xmake.io"
     local siteroot = "https://xrepo.xmake.io"
     local mirrordir = "mirror"
     local mirrordir = "mirror"
     local sitemap = io.open("sitemap.xml", 'w')
     local sitemap = io.open("sitemap.xml", 'w')
@@ -228,4 +231,102 @@ function main()
     sitemap:close()
     sitemap:close()
 end
 end
 
 
+-- write package
+function write_package(file, pkg, plat)
+    local name = pkg:name()
+    local homepage = pkg:get("homepage")
+    local license = pkg:get("license")
+    local versions = pkg:versions()
+    local xmakefile = ("https://github.com/xmake-io/xmake-repo/blob/master/packages/%s/%s/xmake.lua"):format(name:sub(1, 1), name)
+    file:print("### %s (%s)", name, plat)
+    file:print("")
+    file:print("")
+    file:print("| Description | *%s* |", pkg:description())
+    file:print("| -- | -- |")
+    file:print("| Homepage | [%s](%s) |", homepage, homepage)
+    if license then
+        file:print("| License | %s |", license)
+    end
+    file:print("| Versions | %s |", table.concat(versions, ", "))
+    file:print("| Github | [%s/xmake.lua](%s) |", name, xmakefile)
+    file:print("")
+    file:print("##### Install command")
+    file:print("")
+    file:print("```console")
+    if plat == "android" then
+        file:print("xrepo install -p android [--ndk=/xxx] %s", name)
+    elseif plat == "mingw" then
+        file:print("xrepo install -p mingw [--mingw=/xxx] %s", name)
+    elseif plat == "iphoneos" then
+        file:print("xrepo install -p iphoneos %s", name)
+    elseif plat == "cross" then
+        file:print("xrepo install -p cross [--sdk=/xxx] %s", name)
+    else
+        file:print("xrepo install %s", name)
+    end
+    file:print("```")
+    file:print("")
+    file:print("##### Integration in the project (xmake.lua)")
+    file:print("")
+    file:print("```lua")
+    file:print("add_requires(\"%s\")", name)
+    file:print("```")
+    file:print("")
+    file:print("")
+end
+
+-- build packages
+function build_packages()
+    -- clone xmake-repo
+    local url = "https://github.com/xmake-io/xmake-repo"
+    local repodir = path.join(os.tmpdir(), "xrepo-docs", "xmake-repo")
+    print("clone %s => %s", url, repodir)
+    os.tryrm(repodir)
+    git.clone(url, {depth = 1, outputdir = repodir})
+
+    -- load packages
+    os.cd(repodir)
+    local packages = import("scripts.packages", {rootdir = repodir, anonymous = true})()
+    os.cd("-")
+
+    -- generate _sidebar.md
+    print("generate _sidebar.md")
+    local sidebar = io.open("_sidebar.md", "w")
+    sidebar:print("- Packages")
+    for plat, pkgs in pairs(packages) do
+        sidebar:print("  - [%s](packages/%s.md)", plat, plat)
+    end
+    sidebar:close()
+
+    -- generate packages/*.md
+    print("generate packages/*.md")
+    local plats = table.keys(packages)
+    table.sort(plats)
+    for _, plat in ipairs(plats) do
+        local pkgs = packages[plat]
+        local list = {}
+        for _, pkg in ipairs(pkgs) do
+            local key = pkg.name:sub(1, 1)
+            list[key] = list[key] or {}
+            table.insert(list[key], pkg)
+        end
+        local keys = table.keys(list)
+        table.sort(keys)
+        local file = io.open(path.join("packages", plat .. ".md"), "w")
+        for _, key in ipairs(keys) do
+            file:print("## %s", key)
+            for _, pkg in ipairs(list[key]) do
+                write_package(file, pkg.instance, plat)
+            end
+            file:print("")
+        end
+        file:close()
+    end
+end
+
+-- main entry
+function main()
+    build_packages()
+    build_mirror_files()
+end
 
 

+ 5 - 4
index.html

@@ -47,20 +47,21 @@
         '/(?!zh-cn).*/_navbar.md': '/_navbar.md',
         '/(?!zh-cn).*/_navbar.md': '/_navbar.md',
         '/(?!zh-cn).*/_sidebar.md': '/_sidebar.md',
         '/(?!zh-cn).*/_sidebar.md': '/_sidebar.md',
         '/zh-cn/.*/_navbar.md': '/zh-cn/_navbar.md',
         '/zh-cn/.*/_navbar.md': '/zh-cn/_navbar.md',
-        '/zh-cn/.*/_sidebar.md': '/zh-cn/_sidebar.md',
+        '/zh-cn/_sidebar.md': '/_sidebar.md',
       },
       },
       search: {
       search: {
         maxAge: 86400000,
         maxAge: 86400000,
-        paths: 'auto',
+        paths: '/packages',
         placeholder: {
         placeholder: {
-          '/zh-cn/': '搜索',
-          '/': 'Type to search'
+          '/zh-cn/': '搜索',
+          '/': 'Type to search package'
         },
         },
         noData: {
         noData: {
           '/zh-cn/': '找不到结果',
           '/zh-cn/': '找不到结果',
           '/': 'No Results'
           '/': 'No Results'
         },
         },
         depth: 6,
         depth: 6,
+        namespace: 'xrepo.xmake.io',
         hideOtherSidebarContent: false
         hideOtherSidebarContent: false
       },
       },
       formatUpdated: '{MM}/{DD} {HH}:{mm}',
       formatUpdated: '{MM}/{DD} {HH}:{mm}',

+ 266 - 0
mirror/getting_started.html

@@ -0,0 +1,266 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/getting_started">https://xrepo.xmake.io/#/getting_started</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="introduction">Introduction</h2>
+<p>xrepo is a cross-platform C/C++ package manager based on <a href="https://github.com/xmake-io/xmake">Xmake</a>.</p>
+<p>It is based on the runtime provided by xmake, but it is a complete and independent package management program. Compared with package managers such as vcpkg/homebrew, xrepo can provide C/C++ packages for more platforms and architectures at the same time.</p>
+<p>And it also supports multi-version semantic selection. In addition, it is also a decentralized distributed repository. It not only provides the official <a href="https://github.com/xmake-io/xmake-repo">xmake-repo</a> repository, It also supports users to build multiple private repositorys.</p>
+<p>At the same time, xrepo also supports installing packages from third-party package managers such as vcpkg/homebrew/conan, and provides unified and consistent library link information to facilitate integration and docking with third-party projects.</p>
+<p>If you want to know more, please refer to: <a href="https://xmake.io/#/home">Documents</a>, <a href="https://github.com/xmake-io/xrepo">Github</a> and <a href="https://gitee.com/tboox/xrepo">Gitee</a></p>
+<h2 id="installation">Installation</h2>
+<p>We only need install xmake to use the xrepo command. About the installation of xmake, we can see: <a href="https://xmake.io/#/guide/installation">Xmake Installation Document</a>.</p>
+<h2 id="supportedplatforms">Supported platforms</h2>
+<ul>
+<li>Windows (x86, x64)</li>
+<li>macOS (i386, x86_64, arm64)</li>
+<li>Linux (i386, x86_64, cross-toolchains ..)</li>
+<li>*BSD (i386, x86_64)</li>
+<li>Android (x86, x86_64, armeabi, armeabi-v7a, arm64-v8a)</li>
+<li>iOS (armv7, armv7s, arm64, i386, x86_64)</li>
+<li>MSYS (i386, x86_64)</li>
+<li>MinGW (i386, x86_64, arm, arm64)</li>
+<li>Cross Toolchains</li>
+</ul>
+<h2 id="supporydistributedrepository">Suppory distributed repository</h2>
+<p>In addition to directly retrieving the installation package from the official repository: <a href="https://github.com/xmake-io/xmake-repo">xmake-repo</a>.</p>
+<p>We can also add any number of self-built repositories, and even completely isolate the external network, and only maintain the installation and integration of private packages on the company&#39;s internal network.</p>
+<p>Just use the following command to add your own repository address:</p>
+<pre><code class="lang-console">$ xrepo add-repo myrepo https://github.com/mygroup/myrepo
+</code></pre>
+<h2 id="seamlessintegrationwithxmakeproject">Seamless integration with xmake project</h2>
+<pre><code class="lang-lua">add_requires("tbox >1.6.1", "libuv master", "vcpkg::ffmpeg", "brew::pcre2/libpcre2-8")
+add_requires("conan::openssl/1.1.1g", {alias = "openssl", optional = true, debug = true})
+target("test")
+     set_kind("binary")
+     add_files("src/*.c")
+     add_packages("tbox", "libuv", "vcpkg::ffmpeg", "brew::pcre2/libpcre2-8", "openssl")
+</code></pre>
+<p>The following is the overall architecture and compilation process integrated with xmake.</p>
+<p><img src="https://xmake.io/assets/img/index/package_arch.png" width="650px" /></p>
+<h2 id="getstarted">Get started</h2>
+<h3 id="installationpackage">Installation package</h3>
+<h4 id="basicusage">Basic usage</h4>
+<pre><code class="lang-console">$ xrepo install zlib tbox
+</code></pre>
+<h4 id="installthespecifiedversionpackage">Install the specified version package</h4>
+<pre><code class="lang-console">$ xrepo install "zlib 1.2.x"
+$ xrepo install "zlib >=1.2.0"
+</code></pre>
+<h4 id="installthespecifiedplatformpackage">Install the specified platform package</h4>
+<pre><code class="lang-console">$ xrepo install -p iphoneos -a arm64 zlib
+$ xrepo install -p android [--ndk=/xxx] zlib
+$ xrepo install -p mingw [--mingw=/xxx] zlib
+$ xrepo install -p cross --sdk=/xxx/arm-linux-musleabi-cross zlib
+</code></pre>
+<h4 id="installthedebugpackage">Install the debug package</h4>
+<pre><code class="lang-console">$ xrepo install -m debug zlib
+</code></pre>
+<h4 id="installthepackagewithdynamiclibrary">Install the package with dynamic library</h4>
+<pre><code class="lang-console">$ xrepo install -k shared zlib
+</code></pre>
+<h4 id="installthespecifiedconfigurationpackage">Install the specified configuration package</h4>
+<pre><code class="lang-console">$ xrepo install -f "vs_runtime=MD" zlib
+$ xrepo install -f "regex=true,thread=true" boost
+</code></pre>
+<h4 id="installpackagesfromthirdpartypackagemanager">Install packages from third-party package manager</h4>
+<pre><code class="lang-console">$ xrepo install brew::zlib
+$ xrepo install vcpkg::zlib
+$ xrepo install conan::zlib/1.2.11
+</code></pre>
+<h3 id="findthelibraryinformationofthepackage">Find the library information of the package</h3>
+<pre><code class="lang-console">$ xrepo fetch pcre2
+{
+  {
+    linkdirs = {
+      "/usr/local/Cellar/pcre2/10.33/lib"
+    },
+    links = {
+      "pcre2-8"
+    },
+    defines = {
+      "PCRE2_CODE_UNIT_WIDTH=8"
+    },
+    includedirs = "/usr/local/Cellar/pcre2/10.33/include"
+  }
+}
+</code></pre>
+<pre><code class="lang-console">$ xrepo fetch --ldflags openssl
+-L/Users/ruki/.xmake/packages/o/openssl/1.1.1/d639b7d6e3244216b403b39df5101abf/lib -lcrypto -lssl
+</code></pre>
+<pre><code class="lang-console">$ xrepo fetch --cflags openssl
+-I/Users/ruki/.xmake/packages/o/openssl/1.1.1/d639b7d6e3244216b403b39df5101abf/include
+</code></pre>
+<pre><code class="lang-console">$ xrepo fetch -p [iphoneos|android] --cflags "zlib 1.2.x"
+-I/Users/ruki/.xmake/packages/z/zlib/1.2.11/df72d410e7e14391b1a4375d868a240c/include
+</code></pre>
+<pre><code class="lang-console">$ xrepo fetch --cflags --ldflags conan::zlib/1.2.11
+-I/Users/ruki/.conan/data/zlib/1.2.11/_/_/package/f74366f76f700cc6e991285892ad7a23c30e6d47/include -L/Users/ruki/.conan/data/zlib/1.2.11/_/_/package/f74366f76f700cc6e991285892ad7a23c30e6d47/lib -lz
+</code></pre>
+<h3 id="exporttheinstalledpackages">Export the installed packages</h3>
+<p>xrepo can quickly export installed packages, including corresponding library files, header files, etc.</p>
+<pre><code class="lang-console">$ xrepo export -o /tmp/output zlib
+</code></pre>
+<h3 id="searchsupportedpackages">Search supported packages</h3>
+<pre><code class="lang-console">$ xrepo search zlib "pcr*"
+    zlib:
+      -> zlib: A Massively Spiffy Yet Delicately Unobtrusive Compression Library (in xmake-repo)
+    pcr*:
+      -> pcre2: A Perl Compatible Regular Expressions Library (in xmake-repo)
+      -> pcre: A Perl Compatible Regular Expressions Library (in xmake-repo)
+</code></pre>
+<h3 id="showpackageenvironmentinformation">Show package environment information</h3>
+<pre><code class="lang-console">$ xrepo env --show luajit
+{
+   OLDPWD = "/mnt/tbox",
+   HOME = "/home/ruki",
+   PATH = "/home/ruki/.xmake/packages/l/luajit/2.1.0-beta3/fbac76d823b844f0b91abf3df0a3bc61/bin:/tmp:/tmp/arm-linux-musleabi-cross/bin:~/.local/bin: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
+   TERM = "xterm",
+   PWD = "/mnt/xmake",
+   XMAKE_PROGRAM_DIR = "/mnt/xmake/xmake",
+   HOSTNAME = "e6edd61ff1ab",
+   LD_LIBRARY_PATH = "/home/ruki/.xmake/packages/l/luajit/2.1.0-beta3/fbac76d823b844f0b91abf3df0a3bc61/lib",
+   SHLVL = "1",
+   _ = "/mnt/xmake/scripts/xrepo.sh"
+}
+</code></pre>
+<h3 id="loadpackageenvironmentandruncommands">Load package environment and run commands</h3>
+<pre><code class="lang-console">$ xrepo env luajit
+LuaJIT 2.1.0-beta3 -- Copyright (C) 2005-2017 Mike Pall. http://luajit.org/
+JIT: ON SSE2 SSE3 SSE4.1 BMI2 fold cse dce fwd dse narrow loop abc sink fuse
+>
+</code></pre>
+<pre><code class="lang-console">$ xrepo env -b "luajit 2.x" luajit
+$ xrepo env -p iphoneos -b "zlib,libpng,luajit 2.x" cmake ..
+</code></pre>
+<h3 id="showthegivenpackageinformation">Show the given package information</h3>
+<pre><code class="lang-console">$ xrepo info zlib
+The package info of project:
+    require(zlib):
+      -> description: A Massively Spiffy Yet Delicately Unobtrusive Compression Library
+      -> version: 1.2.11
+      -> urls:
+         -> http://zlib.net/zlib-1.2.11.tar.gz
+            -> c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
+         -> https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz
+            -> c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
+      -> repo: xmake-repo https://gitee.com/tboox/xmake-repo.git master
+      -> cachedir: /Users/ruki/.xmake/cache/packages/2010/z/zlib/1.2.11
+      -> installdir: /Users/ruki/.xmake/packages/z/zlib/1.2.11/d639b7d6e3244216b403b39df5101abf
+      -> searchdirs:
+      -> searchnames: zlib-1.2.11.tar.gz
+      -> fetchinfo: 1.2.11, system
+          -> version: 1.2.11
+          -> links: z
+          -> linkdirs: /usr/local/Cellar/zlib/1.2.11/lib
+          -> includedirs: /usr/local/Cellar/zlib/1.2.11/include
+      -> platforms: iphoneos, mingw@windows, macosx, mingw@linux,macosx, android@linux,macosx, windows, linux
+      -> requires:
+         -> plat: macosx
+         -> arch: x86_64
+         -> configs:
+            -> debug: false
+            -> vs_runtime: MT
+            -> shared: false
+      -> configs:
+      -> configs (builtin):
+         -> debug: Enable debug symbols. (default: false)
+         -> shared: Enable shared library. (default: false)
+         -> cflags: Set the C compiler flags.
+         -> cxflags: Set the C/C++ compiler flags.
+         -> cxxflags: Set the C++ compiler flags.
+         -> asflags: Set the assembler flags.
+         -> vs_runtime: Set vs compiler runtime. (default: MT)
+            -> values: {"MT","MD"}
+</code></pre>
+</article>
+</body>
+</html>

+ 1399 - 0
mirror/index.html

@@ -0,0 +1,1399 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/">https://xrepo.xmake.io/#/</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="">简介</h2>
+<p>XMake是一个基于Lua的轻量级跨平台自动构建工具,支持在各种主流平台上构建项目</p>
+<p>xmake的目标是开发者更加关注于项目本身开发,简化项目的描述和构建,并且提供平台无关性,使得一次编写,随处构建</p>
+<p>它跟cmake、automake、premake有点类似,但是机制不同,它默认不会去生成IDE相关的工程文件,采用直接编译,并且更加的方便易用<br>采用lua的工程描述语法更简洁直观,支持在大部分常用平台上进行构建,以及交叉编译</p>
+<p>并且xmake提供了创建、配置、编译、打包、安装、卸载、运行等一些actions,使得开发和构建更加的方便和流程化。</p>
+<p>不仅如此,它还提供了许多更加高级的特性,例如插件扩展、脚本宏记录、批量打包、自动文档生成等等。。</p>
+<h2 id="">安装</h2>
+<h4 id="master">Master版本</h4>
+<h4 id="curl">使用curl</h4>
+<pre><code class="lang-bash">bash <(curl -fsSL https://xmake.io/shget.text)
+</code></pre>
+<h4 id="wget">使用wget</h4>
+<pre><code class="lang-bash">bash <(wget https://xmake.io/shget.text -O -)
+</code></pre>
+<h4 id="powershell">使用powershell</h4>
+<pre><code class="lang-powershell">Invoke-Expression (Invoke-Webrequest &#39;https://xmake.io/psget.text&#39; -UseBasicParsing).Content
+</code></pre>
+<h4 id="windows">Windows</h4>
+<h5 id="">使用安装包</h5>
+<ol>
+<li>从 <a href="https://github.com/xmake-io/xmake/releases">Releases</a> 上下载windows安装包</li>
+<li>运行安装程序 xmake-[version].exe</li>
+</ol>
+<h5 id="scoop">使用scoop</h5>
+<pre><code class="lang-bash">scoop install xmake
+</code></pre>
+<h4 id="macos">MacOS</h4>
+<pre><code class="lang-bash">$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
+$ brew install xmake
+</code></pre>
+<p>或者:</p>
+<ol>
+<li>从 <a href="https://github.com/xmake-io/xmake/releases">Releases</a> 上下载pkg安装包</li>
+<li>双击运行</li>
+</ol>
+<p>或者安装master版本:</p>
+<pre><code class="lang-bash"># 使用homebrew安装master版本
+$ brew install xmake --HEAD
+
+# 或者直接调用shell下载安装
+$ bash <(curl -fsSL https://xmake.io/shget.text)
+</code></pre>
+<h4 id="linux">Linux</h4>
+<p>在archlinux上安装:</p>
+<pre><code class="lang-bash">$ yaourt xmake
+</code></pre>
+<p>在ubuntu上安装:</p>
+<pre><code class="lang-bash">$ sudo add-apt-repository ppa:tboox/xmake
+$ sudo apt-get update
+$ sudo apt-get install xmake
+</code></pre>
+<p>或者手动添加包源:</p>
+<pre><code>deb http://ppa.launchpad.net/tboox/xmake/ubuntu yakkety main 
+deb-src http://ppa.launchpad.net/tboox/xmake/ubuntu yakkety main 
+</code></pre><p>然后执行:</p>
+<pre><code class="lang-bash">$ sudo apt-get update
+$ sudo apt-get install xmake
+</code></pre>
+<p>或者下载deb包来安装:</p>
+<ol>
+<li>从 <a href="https://github.com/xmake-io/xmake/releases">Releases</a> 上下载deb安装包</li>
+<li>运行: <code>dpkg -i xmake-xxxx.deb</code></li>
+</ol>
+<p>在<code>redhat/centos</code>上安装:</p>
+<ol>
+<li>从 <a href="https://github.com/xmake-io/xmake/releases">Releases</a> 上下载rpm安装包</li>
+<li>运行: <code>yum install xmake-xxx.rpm --nogpgcheck</code></li>
+</ol>
+<h4 id="">编译安装</h4>
+<p>通过脚本编译安装:</p>
+<pre><code class="lang-bash">$ git clone https://github.com/xmake-io/xmake.git
+$ cd ./xmake
+$ ./scripts/get.sh __local__
+</code></pre>
+<p>仅仅安装和更新xmake的lua脚本:</p>
+<pre><code class="lang-bash">$ ./scripts/get.sh __local__ __install_only__
+</code></pre>
+<p>卸载:</p>
+<pre><code class="lang-bash">$ ./scripts/get.sh __uninstall__
+</code></pre>
+<p>通过make进行编译安装:</p>
+<pre><code class="lang-bash">$ make build; sudo make install
+</code></pre>
+<p>安装到其他指定目录:</p>
+<pre><code class="lang-bash">$ sudo make install prefix=/usr/local
+</code></pre>
+<p>卸载:</p>
+<pre><code class="lang-bash">$ sudo make uninstall
+</code></pre>
+<h4 id="">更新升级</h4>
+<p>从v2.2.3版本开始,新增了<code>xmake update</code>命令,来快速进行自我更新和升级,默认是升级到最新版本,当然也可以指定升级或者回退到某个版本:</p>
+<pre><code class="lang-bash">$ xmake update 2.2.4
+</code></pre>
+<p>我们也可以指定更新到master/dev分支版本:</p>
+<pre><code class="lang-bash">$ xmake update master
+$ xmake update dev
+</code></pre>
+<p>最后,我们如果要卸载xmake,也是支持的:<code>xmake update --uninstall</code></p>
+<h2 id="">快速开始</h2>
+<p><a href="https://asciinema.org/a/133693"><img src="https://asciinema.org/a/133693.png" alt="asciicast"></a></p>
+<h4 id="">创建工程</h4>
+<p>创建一个名叫<code>hello</code>的<code>c</code>控制台工程:</p>
+<pre><code class="lang-bash">$ xmake create -l c -P ./hello
+</code></pre>
+<p>执行完后,将会生成一个简单工程结构:</p>
+<pre><code>hello
+├── src
+│   └── main.c
+└── xmake.lua
+</code></pre><p>其中<code>xmake.lua</code>是工程描述文件,内容非常简单,告诉xmake添加<code>src</code>目录下的所有<code>.c</code>源文件:</p>
+<pre><code class="lang-lua">target("hello")
+    set_kind("binary")
+    add_files("src/*.c") 
+</code></pre>
+<p>目前支持的语言如下:</p>
+<ul>
+<li>c/c++</li>
+<li>objc/c++</li>
+<li>cuda</li>
+<li>asm</li>
+<li>swift</li>
+<li>dlang</li>
+<li>golang</li>
+<li>rust</li>
+</ul>
+<p><p class="tip"><br>    如果你想了解更多参数选项,请运行: <code>xmake create --help</code><br></p>
+
+</p>
+<h4 id="">构建工程</h4>
+<pre><code class="lang-bash">$ xmake
+</code></pre>
+<h4 id="">运行程序</h4>
+<pre><code class="lang-bash">$ xmake run hello
+</code></pre>
+<h4 id="">调试程序</h4>
+<pre><code class="lang-bash">$ xmake run -d hello 
+</code></pre>
+<p>xmake将会使用系统自带的调试器去加载程序运行,目前支持:lldb, gdb, windbg, vsjitdebugger, ollydbg 等各种调试器。</p>
+<pre><code class="lang-bash">[lldb]$target create "build/hello"
+Current executable set to &#39;build/hello&#39; (x86_64).
+[lldb]$b main
+Breakpoint 1: where = hello`main, address = 0x0000000100000f50
+[lldb]$r
+Process 7509 launched: &#39;/private/tmp/hello/build/hello&#39; (x86_64)
+Process 7509 stopped
+* thread #1: tid = 0x435a2, 0x0000000100000f50 hello`main, queue = &#39;com.apple.main-thread&#39;, stop reason = breakpoint 1.1
+    frame #0: 0x0000000100000f50 hello`main
+hello`main:
+->  0x100000f50 <+0>:  pushq  %rbp
+    0x100000f51 <+1>:  movq   %rsp, %rbp
+    0x100000f54 <+4>:  leaq   0x2b(%rip), %rdi          ; "hello world!"
+    0x100000f5b <+11>: callq  0x100000f64               ; symbol stub for: puts
+[lldb]$
+</code></pre>
+<p><p class="tip"><br>    你也可以使用简写的命令行选项,例如: <code>xmake r</code> 或者 <code>xmake run</code><br></p>
+
+</p>
+<h2 id="">工程实例</h2>
+<h4 id="">可执行程序</h4>
+<pre><code class="lang-lua">target("test")
+    set_kind("binary")
+    add_files("src/*c")
+</code></pre>
+<h4 id="">静态库程序</h4>
+<pre><code class="lang-lua">target("library")
+    set_kind("static")
+    add_files("src/library/*.c")
+
+target("test")
+    set_kind("binary")
+    add_files("src/*c")
+    add_deps("library")
+</code></pre>
+<p>通过<code>add_deps</code>将一个静态库自动链接到test可执行程序。</p>
+<h4 id="">动态库程序</h4>
+<pre><code class="lang-lua">target("library")
+    set_kind("shared")
+    add_files("src/library/*.c")
+
+target("test")
+    set_kind("binary")
+    add_files("src/*c")
+    add_deps("library")
+</code></pre>
+<p>通过<code>add_deps</code>将一个动态库自动链接到test可执行程序。</p>
+<h4 id="qt">Qt程序</h4>
+<p>创建一个空工程:</p>
+<pre><code class="lang-console">$ xmake create -l c++ -t console_qt test
+$ xmake create -l c++ -t static_qt test
+$ xmake create -l c++ -t shared_qt test
+$ xmake create -l c++ -t quickapp_qt test
+</code></pre>
+<p>默认会自动探测Qt环境,当然也可以指定Qt SDK环境目录:</p>
+<pre><code class="lang-console">$ xmake f --qt=~/Qt/Qt5.9.1
+</code></pre>
+<p>如果想要使用windows下mingw的Qt环境,可以切到mingw的平台配置,并且指定下mingw编译环境的sdk路径即可,例如:</p>
+<pre><code class="lang-console">$ xmake f -p mingw --sdk=C:\Qt\Qt5.10.1\Tools\mingw530_32 
+</code></pre>
+<p>上述指定的mingw sdk用的是Qt下Tools目录自带的环境,当然如果有其他第三方mingw编译环境,也可以手动指定, 具体可以参考:<a href="#mingw">mingw编译配置</a>。</p>
+<p>更多详情可以参考:<a href="https://github.com/xmake-io/xmake/issues/160">#160</a></p>
+<h5 id="">静态库程序</h5>
+<pre><code class="lang-lua">target("qt_static_library")
+    add_rules("qt.static")
+    add_files("src/*.cpp")
+    add_frameworks("QtNetwork", "QtGui")
+</code></pre>
+<h5 id="">动态库程序</h5>
+<pre><code class="lang-lua">target("qt_shared_library")
+    add_rules("qt.shared")
+    add_files("src/*.cpp")
+    add_frameworks("QtNetwork", "QtGui")
+</code></pre>
+<h5 id="">控制台程序</h5>
+<pre><code class="lang-lua">target("qt_console")
+    add_rules("qt.console")
+    add_files("src/*.cpp")
+</code></pre>
+<h5 id="quick">Quick应用程序</h5>
+<pre><code class="lang-lua">target("qt_quickapp")
+    add_rules("qt.application")
+    add_files("src/*.cpp") 
+    add_files("src/qml.qrc")
+    add_frameworks("QtQuick")
+</code></pre>
+<h5 id="widgets">Widgets应用程序</h5>
+<pre><code class="lang-lua">target("qt_widgetapp")
+    add_rules("qt.application")
+    add_files("src/*.cpp") 
+    add_files("src/mainwindow.ui")
+    add_files("src/mainwindow.h")  -- 添加带有 Q_OBJECT 的meta头文件
+    add_frameworks("QtWidgets")
+</code></pre>
+<h5 id="android">Android应用程序</h5>
+<p>2.2.6之后版本,可以直接切到android平台编译Quick/Widgets应用程序,生成apk包,并且可通过<code>xmake install</code>命令安装到设备。</p>
+<pre><code class="lang-console">$ xmake create -t quickapp_qt -l c++ appdemo
+$ cd appdemo
+$ xmake f -p android --ndk=~/Downloads/android-ndk-r19c/ --android_sdk=~/Library/Android/sdk/ -c 
+$ xmake
+[  0%]: compiling.qt.qrc src/qml.qrc
+[ 50%]: ccache compiling.release src/main.cpp
+[100%]: linking.release libappdemo.so
+[100%]: generating.qt.app appdemo.apk
+</code></pre>
+<p>然后安装到设备:</p>
+<pre><code class="lang-console">$ xmake install
+installing appdemo ...
+installing build/android/release/appdemo.apk ..
+Success
+install ok!👌
+</code></pre>
+<h4 id="cuda">Cuda程序</h4>
+<p>创建一个空工程:</p>
+<pre><code class="lang-console">$ xmake create -P test -l cuda
+$ cd test
+$ xmake
+</code></pre>
+<pre><code class="lang-lua">-- define target
+target("cuda_console")
+    set_kind("binary")
+    add_files("src/*.cu")
+    -- generate SASS code for SM architecture of current host
+    add_cugencodes("native")
+    -- generate PTX code for the virtual architecture to guarantee compatibility
+    add_cugencodes("compute_30")
+</code></pre>
+<p><p class="tip"><br>从v2.2.7版本开始,默认构建会启用device-link。(参见 <a href="https://devblogs.nvidia.com/separate-compilation-linking-cuda-device-code/">Separate Compilation and Linking of CUDA C++ Device Code</a>)<br>如果要显示禁用device-link,可以通过<code>add_values("cuda.devlink", false)</code> 来设置。<br></p>
+
+</p>
+<p>默认会自动探测cuda环境,当然也可以指定Cuda SDK环境目录:</p>
+<pre><code class="lang-console">$ xmake f --cuda=/usr/local/cuda-9.1/ 
+$ xmake
+</code></pre>
+<p>更多详情可以参考:<a href="https://github.com/xmake-io/xmake/issues/158">#158</a></p>
+<h4 id="wdk">WDK驱动程序</h4>
+<p>默认会自动探测wdk所在环境,当然也可以指定wdk sdk环境目录:</p>
+<pre><code class="lang-console">$ xmake f --wdk="G:\Program Files\Windows Kits\10" -c 
+$ xmake
+</code></pre>
+<p>更多详情可以参考:<a href="https://github.com/xmake-io/xmake/issues/159">#159</a></p>
+<h5 id="umdf">umdf驱动程序</h5>
+<pre><code class="lang-lua">target("echo")
+    add_rules("wdk.driver", "wdk.env.umdf")
+    add_files("driver/*.c") 
+    add_files("driver/*.inx")
+    add_includedirs("exe")
+
+target("app")
+    add_rules("wdk.binary", "wdk.env.umdf")
+    add_files("exe/*.cpp") 
+</code></pre>
+<h5 id="kmdf">kmdf驱动程序</h5>
+<pre><code class="lang-lua">target("nonpnp")
+    add_rules("wdk.driver", "wdk.env.kmdf")
+    add_values("wdk.tracewpp.flags", "-func:TraceEvents(LEVEL,FLAGS,MSG,...)", "-func:Hexdump((LEVEL,FLAGS,MSG,...))")
+    add_files("driver/*.c", {rule = "wdk.tracewpp"}) 
+    add_files("driver/*.rc")
+
+target("app")
+    add_rules("wdk.binary", "wdk.env.kmdf")
+    add_files("exe/*.c") 
+    add_files("exe/*.inf")
+</code></pre>
+<h5 id="wdm">wdm驱动程序</h5>
+<pre><code class="lang-lua">target("kcs")
+    add_rules("wdk.driver", "wdk.env.wdm")
+    add_values("wdk.man.flags", "-prefix Kcs")
+    add_values("wdk.man.resource", "kcsCounters.rc")
+    add_values("wdk.man.header", "kcsCounters.h")
+    add_values("wdk.man.counter_header", "kcsCounters_counters.h")
+    add_files("*.c", "*.rc", "*.man") 
+</code></pre>
+<pre><code class="lang-lua">target("msdsm")
+    add_rules("wdk.driver", "wdk.env.wdm")
+    add_values("wdk.tracewpp.flags", "-func:TracePrint((LEVEL,FLAGS,MSG,...))")
+    add_files("*.c", {rule = "wdk.tracewpp"}) 
+    add_files("*.rc", "*.inf")
+    add_files("*.mof|msdsm.mof")
+    add_files("msdsm.mof", {values = {wdk_mof_header = "msdsmwmi.h"}}) 
+</code></pre>
+<h5 id="">生成驱动包</h5>
+<p>可以通过以下命令生成.cab驱动包:</p>
+<pre><code class="lang-console">$ xmake [p|package]
+$ xmake [p|package] -o outputdir
+</code></pre>
+<p>输出的目录结构如下:</p>
+<pre><code>  - drivers
+    - sampledsm
+       - debug/x86/sampledsm.cab
+       - release/x64/sampledsm.cab
+       - debug/x86/sampledsm.cab
+       - release/x64/sampledsm.cab
+</code></pre><h5 id="">驱动签名</h5>
+<p>默认编译禁用签名,可以通过<code>set_values("wdk.sign.mode", ...)</code>设置签名模式来启用签名。</p>
+<h6 id="">测试签名</h6>
+<p>测试签名一般本机调试时候用,可以使用xmake自带的test证书来进行签名,例如:</p>
+<pre><code class="lang-lua">target("msdsm")
+    add_rules("wdk.driver", "wdk.env.wdm")
+    set_values("wdk.sign.mode", "test")
+</code></pre>
+<p>不过这种情况下,需要用户手动在管理员模式下,执行一遍:<code>$xmake l utils.wdk.testcert install</code>,来生成和注册test证书到本机环境。<br>这个只需要执行一次就行了,后续就可以正常编译和签名了。</p>
+<p>当然也可以使用本机已有的有效证书去签名。</p>
+<p>从sha1来选择合适的证书进行签名:</p>
+<pre><code class="lang-lua">target("msdsm")
+    add_rules("wdk.driver", "wdk.env.wdm")
+    set_values("wdk.sign.mode", "test")
+    set_values("wdk.sign.thumbprint", "032122545DCAA6167B1ADBE5F7FDF07AE2234AAA")
+</code></pre>
+<p>从store/company来选择合适的证书进行签名:</p>
+<pre><code class="lang-lua">target("msdsm")
+    add_rules("wdk.driver", "wdk.env.wdm")
+    set_values("wdk.sign.mode", "test")
+    set_values("wdk.sign.store", "PrivateCertStore")
+    set_values("wdk.sign.company", "tboox.org(test)")
+</code></pre>
+<h6 id="">正式签名</h6>
+<p>通过指定对应的正式签名证书文件进行签名:</p>
+<pre><code class="lang-lua">target("msdsm")
+    add_rules("wdk.driver", "wdk.env.wdm")
+    set_values("wdk.sign.mode", "release")
+    set_values("wdk.sign.company", "xxxx")
+    set_values("wdk.sign.certfile", path.join(os.projectdir(), "xxxx.cer"))
+</code></pre>
+<h5 id="">生成低版本驱动</h5>
+<p>如果想在wdk10环境编译生成win7, win8等低版本系统支持的驱动,可以通过设置<code>wdk.env.winver</code>来切换系统版本:</p>
+<pre><code class="lang-lua">set_values("wdk.env.winver", "win10")
+set_values("wdk.env.winver", "win10_rs3")
+set_values("wdk.env.winver", "win81")
+set_values("wdk.env.winver", "win8")
+set_values("wdk.env.winver", "win7")
+set_values("wdk.env.winver", "win7_sp1")
+set_values("wdk.env.winver", "win7_sp2")
+set_values("wdk.env.winver", "win7_sp3")
+</code></pre>
+<p>我们也可以手动指定编译的目标程序支持的windows版本:</p>
+<pre><code class="lang-console">$ xmake f --wdk_winver=[win10_rs3|win8|win7|win7_sp1]
+$ xmake
+</code></pre>
+<h4 id="winsdk">WinSDK程序</h4>
+<pre><code class="lang-lua">target("usbview")
+    add_rules("win.sdk.application")
+
+    add_files("*.c", "*.rc")
+    add_files("xmlhelper.cpp", {rule = "win.sdk.dotnet"})
+</code></pre>
+<p>更多详情可以参考:<a href="https://github.com/xmake-io/xmake/issues/173">#173</a></p>
+<h2 id="">编译配置</h2>
+<p>通过<code>xmake f|config</code>配置命令,设置构建前的相关配置信息,详细参数选项,请运行: <code>xmake f --help</code>。</p>
+<p><p class="tip"><br>    你可以使用命令行缩写来简化输入,也可以使用全名,例如: <br><br>    <code>xmake f</code> 或者 <code>xmake config</code>.<br><br>    <code>xmake f -p linux</code> 或者 <code>xmake config --plat=linux</code>.<br></p>
+
+</p>
+<h4 id="">目标平台</h4>
+<h5 id="">主机平台</h5>
+<pre><code class="lang-bash">$ xmake
+</code></pre>
+<p><p class="tip"><br>    xmake将会自动探测当前主机平台,默认自动生成对应的目标程序。<br></p>
+
+</p>
+<h5 id="linux">Linux</h5>
+<pre><code class="lang-bash">$ xmake f -p linux [-a i386|x86_64]
+$ xmake
+</code></pre>
+<h5 id="android">Android</h5>
+<pre><code class="lang-bash">$ xmake f -p android --ndk=~/files/android-ndk-r10e/ [-a armeabi-v7a|arm64-v8a]
+$ xmake
+</code></pre>
+<p>如果要手动指定ndk中具体某个工具链,而不是使用默认检测的配置,可以通过<a href="#-bin">--bin</a>来设置,例如:</p>
+<pre><code class="lang-bash">$ xmake f -p android --ndk=~/files/android-ndk-r10e/ -a arm64-v8a --bin=~/files/android-ndk-r10e/toolchains/aarch64-linux-android-4.9/prebuilt/darwin-x86_64/bin
+</code></pre>
+<p><a href="#-bin">--bin</a>主要用于设置选择编译工具的具体bin目录,这个的使用跟<a href="#交叉编译">交叉编译</a>中的<a href="#-bin">--bin</a>的行为是一致的。</p>
+<p><p class="tip"><br>如果手动设置了bin目录,没有通过检测,可以看下是否<code>--arch=</code>参数没有匹配对。<br></p>
+
+</p>
+<h5 id="iphoneos">iPhoneOS</h5>
+<pre><code class="lang-bash">$ xmake f -p iphoneos [-a armv7|armv7s|arm64|i386|x86_64]
+$ xmake
+</code></pre>
+<h5 id="windows">Windows</h5>
+<pre><code class="lang-bash">$ xmake f -p windows [-a x86|x64]
+$ xmake
+</code></pre>
+<h5 id="mingw">Mingw</h5>
+<pre><code class="lang-bash">$ xmake f -p mingw --sdk=/usr/local/i386-mingw32-4.3.0/ [-a i386|x86_64]
+$ xmake
+</code></pre>
+<h5 id="applewatchos">Apple WatchOS</h5>
+<pre><code class="lang-bash">$ xmake f -p watchos [-a i386|armv7k]
+$ xmake
+</code></pre>
+<h5 id="">交叉编译</h5>
+<p>linux平台的交叉编译:</p>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/usr/local/arm-linux-gcc/ [--bin=/sdk/bin] [--cross=arm-linux-]
+$ xmake
+</code></pre>
+<p>其他平台的交叉编译:</p>
+<pre><code class="lang-bash">$ xmake f -p cross --sdk=/usr/local/arm-xxx-gcc/ [--bin=/sdk/bin] [--cross=arm-linux-]
+$ xmake
+</code></pre>
+<p>如果不关心实际的平台名,只想交叉编译,可以直接用上面的命令,如果需要通过<code>is_plat("myplat")</code>判断自己的平台逻辑,则:</p>
+<pre><code class="lang-bash">$ xmake f -p myplat --sdk=/usr/local/arm-xxx-gcc/ [--bin=/sdk/bin] [--cross=arm-linux-]
+$ xmake
+</code></pre>
+<p>其中:</p>
+<table>
+<thead>
+<tr>
+<th>参数名</th>
+<th>描述</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td><a href="#-sdk">--sdk</a></td>
+<td>设置交叉工具链的sdk根目录</td>
+</tr>
+<tr>
+<td><a href="#-bin">--bin</a></td>
+<td>设置工具链bin目录</td>
+</tr>
+<tr>
+<td><a href="#-cross">--cross</a></td>
+<td>设置交叉工具链工具前缀</td>
+</tr>
+<tr>
+<td><a href="#-as">--as</a></td>
+<td>设置<code>asm</code>汇编器</td>
+</tr>
+<tr>
+<td><a href="#-cc">--cc</a></td>
+<td>设置<code>c</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-cxx">--cxx</a></td>
+<td>设置<code>c++</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-mm">--mm</a></td>
+<td>设置<code>objc</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-mxx">--mxx</a></td>
+<td>设置<code>objc++</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-sc">--sc</a></td>
+<td>设置<code>swift</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-gc">--gc</a></td>
+<td>设置<code>golang</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-dc">--dc</a></td>
+<td>设置<code>dlang</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-rc">--rc</a></td>
+<td>设置<code>rust</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-cu">--cu</a></td>
+<td>设置<code>cuda</code>编译器</td>
+</tr>
+<tr>
+<td><a href="#-ld">--ld</a></td>
+<td>设置<code>c/c++/objc/asm</code>链接器</td>
+</tr>
+<tr>
+<td><a href="#-sh">--sh</a></td>
+<td>设置<code>c/c++/objc/asm</code>共享库链接器</td>
+</tr>
+<tr>
+<td><a href="#-ar">--ar</a></td>
+<td>设置<code>c/c++/objc/asm</code>静态库归档器</td>
+</tr>
+<tr>
+<td><a href="#-scld">--scld</a></td>
+<td>设置<code>swift</code>链接器</td>
+</tr>
+<tr>
+<td><a href="#-scsh">--scsh</a></td>
+<td>设置<code>swift</code>共享库链接器</td>
+</tr>
+<tr>
+<td><a href="#-gcld">--gcld</a></td>
+<td>设置<code>golang</code>链接器</td>
+</tr>
+<tr>
+<td><a href="#-gcar">--gcar</a></td>
+<td>设置<code>golang</code>静态库归档器</td>
+</tr>
+<tr>
+<td><a href="#-dcld">--dcld</a></td>
+<td>设置<code>dlang</code>链接器</td>
+</tr>
+<tr>
+<td><a href="#-dcsh">--dcsh</a></td>
+<td>设置<code>dlang</code>共享库链接器</td>
+</tr>
+<tr>
+<td><a href="#-dcar">--dcar</a></td>
+<td>设置<code>dlang</code>静态库归档器</td>
+</tr>
+<tr>
+<td><a href="#-rcld">--rcld</a></td>
+<td>设置<code>rust</code>链接器</td>
+</tr>
+<tr>
+<td><a href="#-rcsh">--rcsh</a></td>
+<td>设置<code>rust</code>共享库链接器</td>
+</tr>
+<tr>
+<td><a href="#-rcar">--rcar</a></td>
+<td>设置<code>rust</code>静态库归档器</td>
+</tr>
+<tr>
+<td><a href="#-cu-cxx">--cu-cxx</a></td>
+<td>设置<code>cuda</code> host编译器</td>
+</tr>
+<tr>
+<td><a href="#-culd">--culd</a></td>
+<td>设置<code>cuda</code>链接器</td>
+</tr>
+<tr>
+<td><a href="#-asflags">--asflags</a></td>
+<td>设置<code>asm</code>汇编编译选项</td>
+</tr>
+<tr>
+<td><a href="#-cflags">--cflags</a></td>
+<td>设置<code>c</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-cxflags">--cxflags</a></td>
+<td>设置<code>c/c++</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-cxxflags">--cxxflags</a></td>
+<td>设置<code>c++</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-mflags">--mflags</a></td>
+<td>设置<code>objc</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-mxflags">--mxflags</a></td>
+<td>设置<code>objc/c++</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-mxxflags">--mxxflags</a></td>
+<td>设置<code>objc++</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-scflags">--scflags</a></td>
+<td>设置<code>swift</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-gcflags">--gcflags</a></td>
+<td>设置<code>golang</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-dcflags">--dcflags</a></td>
+<td>设置<code>dlang</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-rcflags">--rcflags</a></td>
+<td>设置<code>rust</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-cuflags">--cuflags</a></td>
+<td>设置<code>cuda</code>编译选项</td>
+</tr>
+<tr>
+<td><a href="#-ldflags">--ldflags</a></td>
+<td>设置链接选项</td>
+</tr>
+<tr>
+<td><a href="#-shflags">--shflags</a></td>
+<td>设置共享库链接选项</td>
+</tr>
+<tr>
+<td><a href="#-arflags">--arflags</a></td>
+<td>设置静态库归档选项</td>
+</tr>
+</tbody>
+</table>
+<p><p class="tip"><br>如果你想要了解更多参数选项,请运行: <code>xmake f --help</code>。<br></p>
+
+</p>
+<h6 id="sdk">--sdk</h6>
+<ul>
+<li>设置交叉工具链的sdk根目录</li>
+</ul>
+<p>大部分情况下,都不需要配置很复杂的toolchains前缀,例如:<code>arm-linux-</code> 什么的</p>
+<p>只要这个工具链的sdk目录满足如下结构(大部分的交叉工具链都是这个结构):</p>
+<pre><code>/home/toolchains_sdkdir
+   - bin
+       - arm-linux-gcc
+       - arm-linux-ld
+       - ...
+   - lib
+       - libxxx.a
+   - include
+       - xxx.h
+</code></pre><p>那么,使用xmake进行交叉编译的时候,只需要进行如下配置和编译:</p>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/home/toolchains_sdkdir
+$ xmake
+</code></pre>
+<p>这个时候,xmake会去自动探测,gcc等编译器的前缀名:<code>arm-linux-</code>,并且编译的时候,也会自动加上<code>链接库</code>和<code>头文件</code>的搜索选项,例如:</p>
+<pre><code>-I/home/toolchains_sdkdir/include -L/home/toolchains_sdkdir/lib
+</code></pre><p>这些都是xmake自动处理的,不需要手动配置他们。。</p>
+<h6 id="bin">--bin</h6>
+<ul>
+<li>设置工具链bin目录</li>
+</ul>
+<p>对于不规则工具链目录结构,靠单纯地<a href="#-sdk">--sdk</a>选项设置,没法完全检测通过的情况下,可以通过这个选项继续附加设置工具链的bin目录位置。</p>
+<p>例如:一些特殊的交叉工具链的,编译器bin目录,并不在 <code>/home/toolchains_sdkdir/bin</code> 这个位置,而是独立到了 <code>/usr/opt/bin</code> </p>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/home/toolchains_sdkdir --bin=/usr/opt/bin
+$ xmake
+</code></pre>
+<p><p class="tip"><br>v2.2.1版本之前,这个参数名是<code>--toolchains</code>,比较有歧义,因此新版本中,统一改成<code>--bin=</code>来设置bin目录。<br></p>
+
+</p>
+<h6 id="cross">--cross</h6>
+<ul>
+<li>设置交叉工具链工具前缀</li>
+</ul>
+<p>像<code>aarch64-linux-android-</code>这种,通常如果你配置了<a href="#-sdk">--sdk</a>或者<a href="#-bin">--bin</a>的情况下,xmake会去自动检测的,不需要自己手动设置。</p>
+<p>但是对于一些极特殊的工具链,一个目录下同时有多个cross前缀的工具bin混在一起的情况,你需要手动设置这个配置,来区分到底需要选用哪个bin。</p>
+<p>例如,toolchains的bin目录下同时存在两个不同的编译器:</p>
+<pre><code>/opt/bin
+ - armv7-linux-gcc
+ - aarch64-linux-gcc
+</code></pre><p>我们现在想要选用armv7的版本,则配置如下:</p>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/usr/toolsdk --bin=/opt/bin --cross=armv7-linux-
+</code></pre>
+<h6 id="as">--as</h6>
+<ul>
+<li>设置<code>asm</code>汇编器</li>
+</ul>
+<p>如果还要继续细分选择编译器,则继续追加相关编译器选项,例如:</p>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/user/toolsdk --as=armv7-linux-as
+</code></pre>
+<p>如果存在<code>AS</code>环境变量的话,会优先使用当前环境变量中指定的值。</p>
+<p><p class="tip"><br>如果指定的编译器名不是那些xmake内置可识别的名字(带有gcc, clang等字样),那么编译器工具检测就会失败。<br>这个时候我们可以通过:<code>xmake f --as=gcc@/home/xxx/asmips.exe</code> 设置ccmips.exe编译器作为类gcc的使用方式来编译。<br>也就是说,在指定编译器为<code>asmips.exe</code>的同时,告诉xmake,它跟gcc用法和参数选项基本相同。<br></p>
+
+</p>
+<h6 id="cc">--cc</h6>
+<ul>
+<li>设置c编译器</li>
+</ul>
+<p>如果还要继续细分选择编译器,则继续追加相关编译器选项,例如:</p>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/user/toolsdk --cc=armv7-linux-clang
+</code></pre>
+<p>如果存在<code>CC</code>环境变量的话,会优先使用当前环境变量中指定的值。</p>
+<p><p class="tip"><br>如果指定的编译器名不是那些xmake内置可识别的名字(带有gcc, clang等字样),那么编译器工具检测就会失败。<br>这个时候我们可以通过:<code>xmake f --cc=gcc@/home/xxx/ccmips.exe</code> 设置ccmips.exe编译器作为类gcc的使用方式来编译。<br>也就是说,在指定编译器为<code>ccmips.exe</code>的同时,告诉xmake,它跟gcc用法和参数选项基本相同。<br></p>
+
+</p>
+<h6 id="cxx">--cxx</h6>
+<ul>
+<li>设置<code>c++</code>编译器</li>
+</ul>
+<p>如果还要继续细分选择编译器,则继续追加相关编译器选项,例如:</p>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/user/toolsdk --cxx=armv7-linux-clang++
+</code></pre>
+<p>如果存在<code>CXX</code>环境变量的话,会优先使用当前环境变量中指定的值。</p>
+<p><p class="tip"><br>如果指定的编译器名不是那些xmake内置可识别的名字(带有gcc, clang等字样),那么编译器工具检测就会失败。<br>这个时候我们可以通过:<code>xmake f --cxx=clang++@/home/xxx/c++mips.exe</code> 设置c++mips.exe编译器作为类clang++的使用方式来编译。<br>也就是说,在指定编译器为<code>c++mips.exe</code>的同时,告诉xmake,它跟clang++用法和参数选项基本相同。<br></p>
+
+</p>
+<h6 id="ld">--ld</h6>
+<ul>
+<li>设置<code>c/c++/objc/asm</code>链接器</li>
+</ul>
+<p>如果还要继续细分选择链接器,则继续追加相关编译器选项,例如:</p>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/user/toolsdk --ld=armv7-linux-clang++
+</code></pre>
+<p>如果存在<code>LD</code>环境变量的话,会优先使用当前环境变量中指定的值。</p>
+<p><p class="tip"><br>如果指定的编译器名不是那些xmake内置可识别的名字(带有gcc, clang等字样),那么链接器工具检测就会失败。<br>这个时候我们可以通过:<code>xmake f --ld=g++@/home/xxx/c++mips.exe</code> 设置c++mips.exe链接器作为类g++的使用方式来编译。<br>也就是说,在指定链接器为<code>c++mips.exe</code>的同时,告诉xmake,它跟g++用法和参数选项基本相同。<br></p>
+
+</p>
+<h6 id="sh">--sh</h6>
+<ul>
+<li>设置<code>c/c++/objc/asm</code>共享库链接器</li>
+</ul>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/user/toolsdk --sh=armv7-linux-clang++
+</code></pre>
+<p>如果存在<code>SH</code>环境变量的话,会优先使用当前环境变量中指定的值。</p>
+<p><p class="tip"><br>如果指定的编译器名不是那些xmake内置可识别的名字(带有gcc, clang等字样),那么链接器工具检测就会失败。<br>这个时候我们可以通过:<code>xmake f --sh=g++@/home/xxx/c++mips.exe</code> 设置c++mips.exe链接器作为类g++的使用方式来编译。<br>也就是说,在指定链接器为<code>c++mips.exe</code>的同时,告诉xmake,它跟g++用法和参数选项基本相同。<br></p>
+
+</p>
+<h6 id="ar">--ar</h6>
+<ul>
+<li>设置<code>c/c++/objc/asm</code>静态库归档器</li>
+</ul>
+<pre><code class="lang-bash">$ xmake f -p linux --sdk=/user/toolsdk --ar=armv7-linux-ar
+</code></pre>
+<p>如果存在<code>AR</code>环境变量的话,会优先使用当前环境变量中指定的值。</p>
+<p><p class="tip"><br>如果指定的编译器名不是那些xmake内置可识别的名字(带有ar等字样),那么链接器工具检测就会失败。<br>这个时候我们可以通过:<code>xmake f --ar=ar@/home/xxx/armips.exe</code> 设置armips.exe链接器作为类ar的使用方式来编译。<br>也就是说,在指定链接器为<code>armips.exe</code>的同时,告诉xmake,它跟ar用法和参数选项基本相同。<br></p>
+
+</p>
+<h4 id="">全局配置</h4>
+<p>我们也可以将一些常用配置保存到全局配置中,来简化频繁地输入:</p>
+<p>例如:</p>
+<pre><code class="lang-bash">$ xmake g --ndk=~/files/android-ndk-r10e/
+</code></pre>
+<p>现在,我们重新配置和编译<code>android</code>程序:</p>
+<pre><code class="lang-bash">$ xmake f -p android
+$ xmake
+</code></pre>
+<p>以后,就不需要每次重复配置<code>--ndk=</code>参数了。</p>
+<p><p class="tip"><br>    每个命令都有其简写,例如: <code>xmake g</code> 或者 <code>xmake global</code>.<br><br></p>
+
+</p>
+<h4 id="">清除配置</h4>
+<p>有时候,配置出了问题编译不过,或者需要重新检测各种依赖库和接口,可以加上<code>-c</code>参数,清除缓存的配置,强制重新检测和配置</p>
+<pre><code class="lang-bash">$ xmake f -c
+$ xmake
+</code></pre>
+<p>或者:</p>
+<pre><code class="lang-bash">$ xmake f -p iphoneos -c
+$ xmake
+</code></pre>
+<h2 id="">语法说明</h2>
+<p>xmake的工程描述文件xmake.lua虽然基于lua语法,但是为了使得更加方便简洁得编写项目构建逻辑,xmake对其进行了一层封装,使得编写xmake.lua不会像些makefile那样繁琐</p>
+<p>基本上写个简单的工程构建描述,只需三行就能搞定,例如:</p>
+<pre><code class="lang-lua">target("test")
+    set_kind("binary")
+    add_files("src/*.c")
+</code></pre>
+<h4 id="">作用域</h4>
+<p>xmake的描述语法是按作用域划分的,主要分为:</p>
+<ul>
+<li>外部作用域</li>
+<li>内部作用域</li>
+<li>接口作用域</li>
+</ul>
+<p>那哪些属于外部,哪些又属于内部呢,看看下面的注释,就知道个大概了:</p>
+<pre><code class="lang-lua">-- 外部作用域
+target("test")
+
+    -- 外部作用域
+    set_kind("binary")
+    add_files("src/*.c")
+
+    on_run(function ()
+        -- 内部作用域
+        end)
+
+    after_package(function ()
+        -- 内部作用域
+        end)
+
+-- 外部作用域
+task("hello")
+
+    -- 外部作用域
+    on_run(function ()
+        -- 内部作用域
+        end)
+</code></pre>
+<p>简单的说,就是在自定义脚本<code>function () end</code>之内的都属于内部作用域,也就是脚本作用域,其他地方都是都属于于外部作用域。。</p>
+<h5 id="">外部作用域</h5>
+<p>对于大部分工程来说,并不需要很复杂的工程描述,也不需要自定义脚本支持,只需要简单的 <code>set_xxx</code> 或者 <code>add_xxx</code> 就能满足需求了</p>
+<p>那么根据二八定律,80%的情况下,我们只需要这么写:</p>
+<pre><code class="lang-lua">target("test")
+    set_kind("static")
+    add_files("src/test/*.c")
+
+target("demo")
+    add_deps("test")
+    set_kind("binary")
+    add_links("test")
+    add_files("src/demo/*.c")
+</code></pre>
+<p>不需要复杂的api调用,也不需要各种繁琐的变量定义,以及 if 判断 和 for 循环,要的就是简洁可读,一眼看过去,就算不懂lua语法也没关系</p>
+<p>就当做简单的描述语法,看上去有点像函数调用而已,会点编程的基本一看就知道怎么配置。</p>
+<p>为了做到简洁、安全,在这个作用域内,很多lua 内置api是不开放出来的,尤其是跟写文件、修改操作环境相关的,仅仅提供一些基本的只读接口,和逻辑操作</p>
+<p>目前外部作用域开放的lua内置api有:</p>
+<ul>
+<li>table</li>
+<li>string</li>
+<li>pairs</li>
+<li>ipairs</li>
+<li>print</li>
+<li>os</li>
+</ul>
+<p>当然虽然内置lua api提供不多,但xmake还提供了很多扩展api,像描述api就不多说,详细可参考:<a href="https://xmake.io/#/zh/manual">API手册</a></p>
+<p>还有些辅助api,例如:</p>
+<p>dirs:扫描获取当前指定路径中的所有目录<br>files:扫描获取当前指定路径中的所有文件<br>format: 格式化字符串,string.format的简写版本</p>
+<p>还有变量定义、逻辑操作也是可以使用的,毕竟是基于lua的,该有的基础语法,还是要有的,我们可以通过if来切换编译文件:</p>
+<pre><code class="lang-lua">target("test")
+    set_kind("static")
+    if is_plat("iphoneos") then
+        add_files("src/test/ios/*.c")
+    else
+        add_files("src/test/*.c")
+    end
+</code></pre>
+<p>需要注意的是,变量定义分全局变量和局部变量,局部变量只对当前xmake.lua有效,不影响子xmake.lua</p>
+<pre><code class="lang-lua">-- 局部变量,只对当前xmake.lua有效
+local var1 = 0
+
+-- 全局变量,影响所有之后 includes() 包含的子 xmake.lua 
+var2 = 1
+
+includes("src")
+</code></pre>
+<h5 id="">内部作用域</h5>
+<p>也称插件、脚本作用域,提供更加复杂、灵活的脚本支持,一般用于编写一些自定义脚本、插件开发、自定义task任务、自定义模块等等</p>
+<p>一般通过<code>function () end</code>包含,并且被传入到<code>on_xxx</code>, <code>before_xxx</code>和<code>after_xxx</code>接口内的,都属于自作用域。</p>
+<p>例如:</p>
+<pre><code class="lang-lua">-- 自定义脚本
+target("hello")
+    after_build(function ()
+        -- 内部作用域
+        end)
+
+-- 自定义任务、插件
+task("hello")
+    on_run(function ()
+        -- 内部作用域
+        end)
+</code></pre>
+<p>在此作用域中,不仅可以使用大部分lua的api,还可以使用很多xmake提供的扩展模块,所有扩展模块,通过import来导入</p>
+<p>具体可参考:<a href="https://xmake.io/#/zh/manual?id=import">import模块导入文档</a></p>
+<p>这里我们给个简单的例子,在编译完成后,对ios目标程序进行ldid签名:</p>
+<pre><code class="lang-lua">target("iosdemo")
+    set_kind("binary")
+    add_files("*.m")
+    after_build(function (target) 
+
+        -- 执行签名,如果失败,自动中断,给出高亮错误信息
+        os.run("ldid -S$(projectdir)/entitlements.plist %s", target:targetfile())
+    end)
+</code></pre>
+<p>需要注意的是,在内部作用域中,所有的调用都是启用异常捕获机制的,如果运行出错,会自动中断xmake,并给出错误提示信息</p>
+<p>因此,脚本写起来,不需要繁琐的<code>if retval then</code>判断,脚本逻辑更加一目了然</p>
+<h5 id="">接口作用域</h5>
+<p>在外部作用域中的所有描述api设置,本身也是有作用域之分的,在不同地方调用,影响范围也不相同,例如:</p>
+<pre><code class="lang-lua">-- 全局根作用域,影响所有target,包括includes() 中的子工程target设置
+add_defines("DEBUG")
+
+-- 定义或者进入demo目标作用域(支持多次进入来追加设置)
+target("demo")
+    set_kind("shared")
+    add_files("src/*.c")
+    -- 当前target作用域,仅仅影响当前target
+    add_defines("DEBUG2")
+
+-- 选项设置,仅支持局部设置,不受全局api设置所影响
+option("test")
+    -- 当前选项的局部作用域
+    set_default(false)
+
+-- 其他target设置,-DDEBUG 也会被设置上
+target("demo2")
+    set_kind("binary")
+    add_files("src/*.c")
+
+-- 重新进入demo目标作用域
+target("demo")
+    -- 追加宏定义,只对当前demo目标有效
+    add_defines("DEBUG3")
+</code></pre>
+<p>通常情况下,进入另一个target/option域设置,会自动离开上个target/option域,但是有时候为了比较一些作用域污染情况,我们可以显示离开某个域,例如:</p>
+<pre><code class="lang-lua">option("test")
+    set_default(false)
+option_end()
+
+target("demo")
+    set_kind("binary")
+    add_files("src/*.c")
+target_end()
+</code></pre>
+<p>调用<code>option_end()</code>, <code>target_end()</code>即可显式的离开当前target/option域设置。</p>
+<h5 id="">作用域缩进</h5>
+<p>xmake.lua里面缩进,只是个编写规范,用于更加清楚的区分,当前的设置 是针对 那个作用域的,虽然就算不缩进,也一样ok,但是可读性上 并不是很好。。</p>
+<p>例如:</p>
+<pre><code class="lang-lua">target("xxxx")
+    set_kind("binary")
+    add_files("*.c")
+</code></pre>
+<p>和</p>
+<pre><code class="lang-lua">target("xxxx")
+set_kind("binary")
+add_files("*.c")
+</code></pre>
+<p>上述两种方式,效果上都是一样的,但是理解上,第一种更加直观,一看就知道<code>add_files</code>仅仅只是针对 target 设置的,并不是全局设置</p>
+<p>因此,适当的进行缩进,有助于更好的维护xmake.lua</p>
+<p>最后附上,tbox的<a href="https://github.com/tboox/tbox/blob/master/src/tbox/xmake.lua">xmake.lua</a>描述,仅供参考。。</p>
+<h4 id="">语法简化</h4>
+<p>xmake.lua的配置域语法,非常灵活,可以在相关域做各种复杂灵活的配置,但是对于许多精简的小块配置,这个时候就稍显冗余了:</p>
+<pre><code class="lang-lua">option("test1")
+    set_default(true)
+    set_showmenu(true)
+    set_description("test1 option")
+
+option("test2")
+    set_default(true)
+    set_showmeu(true)
+
+option("test3")
+    set_default("hello")
+</code></pre>
+<p>xmake 2.2.6以上版本,对于上面的这些小块option域设置,我们可以简化下成单行描述:</p>
+<pre><code class="lang-lua">option("test1", {default = true, showmenu = true, description = "test1 option"})
+option("test2", {default = true, showmenu = true})
+option("test3", {default = "hello"})
+</code></pre>
+<p>除了option域,对于其他域也是支持这种简化写法的,例如:</p>
+<pre><code class="lang-lua">target("demo")
+    set_kind("binary")
+    add_files("src/*.c")
+</code></pre>
+<p>简化为:</p>
+<pre><code class="lang-lua">target("demo", {kind = "binary", files = "src/*.c"})
+</code></pre>
+<p>当然,如果配置需求比较复杂的,还是原有的多行设置方式更加方便,这个就看自己的需求来评估到底使用哪种方式了。</p>
+<h2 id="">依赖包管理</h2>
+<h4 id="">本地内置模式</h4>
+<p>通过在项目中内置依赖包目录以及二进制包文件,可以方便的集成一些第三方的依赖库,这种方式比较简单直接,但是缺点也很明显,不方便管理。</p>
+<p>以tbox工程为例,其依赖包如下:</p>
+<pre><code>- base.pkg
+- zlib.pkg
+- polarssl.pkg
+- openssl.pkg
+- mysql.pkg
+- pcre.pkg
+- ...
+</code></pre><p>如果要让当前工程识别加载这些包,首先要指定包目录路径,例如:</p>
+<pre><code class="lang-lua">add_packagedirs("packages")
+</code></pre>
+<p>指定好后,就可以在target作用域中,通过<a href="https://xmake.io/#/zh/manual?id=targetadd_packages">add_packages</a>接口,来添加集成包依赖了,例如:</p>
+<pre><code class="lang-lua">target("tbox")
+    add_packages("zlib", "polarssl", "pcre", "mysql")
+</code></pre>
+<p>那么如何去生成一个*.pkg的包呢,如果是基于xmake的工程,生成方式很简单,只需要:</p>
+<pre><code class="lang-console">$ cd tbox
+$ xmake package
+</code></pre>
+<p>即可在build目录下生成一个tbox.pkg的跨平台包,给第三方项目使用,我也可以直接设置输出目录,编译生成到对方项目中去,例如:</p>
+<pre><code class="lang-console">$ cd tbox
+$ xmake package -o ../test/packages
+</code></pre>
+<p>这样,test工程就可以通过<a href="https://xmake.io/#/zh/manual?id=targetadd_packages">add_packages</a>和<a href="https://xmake.io/#/zh/manual?id=add_packagedirs">add_packagedirs</a>去配置和使用tbox.pkg包了。</p>
+<p>关于内置包的详细描述,还可以参考下相关文章,这里面有详细介绍:<a href="https://tboox.org/cn/2016/08/06/add-package-and-autocheck/">依赖包的添加和自动检测机制</a></p>
+<h4 id="">系统查找模式</h4>
+<p>如果觉得上述内置包的管理方式非常不方便,可以通过xmake提供的内置接口<code>find_packages</code>。</p>
+<p>目前此接口支持以下一些包管理支持:</p>
+<ul>
+<li>vcpkg</li>
+<li>homebrew</li>
+<li>pkg-config</li>
+</ul>
+<p>并且通过系统和第三方包管理工具进行依赖包的安装,然后与xmake进行集成使用,例如我们查找一个openssl包:</p>
+<pre><code class="lang-lua">local packages = find_packages("openssl", "zlib")
+</code></pre>
+<p>返回的结果如下:</p>
+<pre><code class="lang-lua">{
+    {links = {"ssl", "crypto"}, linkdirs = {"/usr/local/lib"}, includedirs = {"/usr/local/include"}},
+    {links = {"z"}, linkdirs = {"/usr/local/lib"}, includedirs = {"/usr/local/include"}}
+}
+</code></pre>
+<p>如果查找成功,则返回一个包含所有包信息的table,如果失败返回nil</p>
+<p>这里的返回结果可以直接作为<code>target:add</code>, <code>option:add</code>的参数传入,用于动态增加<code>target/option</code>的配置:</p>
+<pre><code class="lang-lua">option("zlib")
+    set_showmenu(true)
+    before_check(function (option)
+        option:add(find_packages("openssl", "zlib"))
+    end)
+</code></pre>
+<pre><code class="lang-lua">target("test")
+    on_load(function (target)
+        target:add(find_package("openssl", "zlib"))
+    end)
+</code></pre>
+<p>如果系统上装有<code>homebrew</code>, <code>pkg-config</code>等第三方工具,那么此接口会尝试使用它们去改进查找结果。</p>
+<p>更完整的使用描述,请参考:<a href="https://xmake.io/#/zh/manual?id=find_packages">find_packages</a>接口文档。</p>
+<h5 id="homebrew">homebrew集成支持</h5>
+<p>由于homebrew一般都是把包直接装到的系统中去了,因此用户不需要做任何集成工作,<code>find_packages</code>就已经原生无缝支持。</p>
+<h5 id="vcpkg">vcpkg集成支持</h5>
+<p>目前xmake v2.2.2版本已经支持了vcpkg,用户只需要装完vcpkg后,执行<code>$ vcpkg integrate install</code>,xmake就能自动从系统中检测到vcpkg的根路径,然后自动适配里面包。</p>
+<p>当然,我们也可以手动指定vcpkg的根路径来支持:</p>
+<pre><code class="lang-console">$ xmake f --vcpkg=f:\vcpkg
+</code></pre>
+<p>或者我们可以设置到全局配置中去,避免每次切换配置的时候,重复设置:</p>
+<pre><code class="lang-console">$ xmake g --vcpkg=f:\vcpkg
+</code></pre>
+<h4 id="">远程依赖模式</h4>
+<p>这个在2.2.2版本后已经初步支持,用法上更加的简单,只需要设置对应的依赖包就行了,例如:</p>
+<pre><code class="lang-lua">add_requires("tbox 1.6.*", "libpng ~1.16", "zlib")
+
+target("test")
+    set_kind("binary")
+    add_files("src/*.c") 
+    add_packages("tbox", "libpng", "zlib")
+</code></pre>
+<p>上面的<code>add_requires</code>用于描述当前项目需要的依赖包,而<code>add_packages</code>用于应用依赖包到test目标,只有设置这个才会自动追加links, linkdirs, includedirs等设置。</p>
+<p>然后直接执行编译即可:</p>
+<pre><code class="lang-console">$ xmake 
+</code></pre>
+<p>xmake会去远程拉取相关源码包,然后自动编译安装,最后编译项目,进行依赖包的链接,具体效果见下图:</p>
+<p><img src="/assets/img/index/package_manage.png" width="80%" /></p>
+<p>关于包依赖管理的更多相关信息和进展见相关issues:<a href="https://github.com/xmake-io/xmake/issues/69">Remote package management</a> </p>
+<h5 id="">目前支持的特性</h5>
+<ul>
+<li>语义版本支持,例如:">= 1.1.0 < 1.2", "~1.6", "1.2.x", "1.*"</li>
+<li>提供官方包仓库、自建私有仓库、项目内置仓库等多仓库管理支持</li>
+<li>跨平台包编译集成支持(不同平台、不同架构的包可同时安装,快速切换使用)</li>
+<li>debug依赖包支持,实现源码调试</li>
+</ul>
+<h5 id="">依赖包处理机制</h5>
+<p>这里我们简单介绍下整个依赖包的处理机制:</p>
+<p><img src="/assets/img/index/package_arch.png" width="80%" /></p>
+<ol>
+<li>优先检测当前系统目录、第三方包管理下有没有存在指定的包,如果有匹配的包,那么就不需要下载安装了 (当然也可以设置不使用系统包)</li>
+<li>检索匹配对应版本的包,然后下载、编译、安装(注:安装在特定xmake目录,不会干扰系统库环境)</li>
+<li>编译项目,最后自动链接启用的依赖包</li>
+</ol>
+<h5 id="">快速上手</h5>
+<p>新建一个依赖tbox库的空工程:</p>
+<pre><code class="lang-console">$ xmake create -t console_tbox test
+$ cd test
+</code></pre>
+<p>执行编译即可,如果当前没有安装tbox库,则会自动下载安装后使用:</p>
+<pre><code class="lang-console">$ xmake
+</code></pre>
+<p>切换到iphoneos平台进行编译,将会重新安装iphoneos版本的tbox库进行链接使用:</p>
+<pre><code class="lang-console">$ xmake f -p iphoneos
+$ xmake
+</code></pre>
+<p>切换到android平台arm64-v8a架构编译:</p>
+<pre><code class="lang-console">$ xmake f -p android [--ndk=~/android-ndk-r16b]
+$ xmake
+</code></pre>
+<h5 id="">语义版本设置</h5>
+<p>xmake的依赖包管理是完全支持语义版本选择的,例如:"~1.6.1",对于语义版本的具体描述见:<a href="https://semver.org/">https://semver.org/</a></p>
+<p>一些语义版本写法:</p>
+<pre><code class="lang-lua">add_requires("tbox 1.6.*", "pcre 1.3.x", "libpng ^1.18")
+add_requires("libpng ~1.16", "zlib 1.1.2 || >=1.2.11 <1.3.0")
+</code></pre>
+<p>目前xmake使用的语义版本解析器是<a href="https://github.com/uael">uael</a>贡献的<a href="https://github.com/uael/sv">sv</a>库,里面也有对版本描述写法的详细说明,可以参考下:<a href="https://github.com/uael/sv#versions">版本描述说明</a></p>
+<p>当然,如果我们对当前的依赖包的版本没有特殊要求,那么可以直接这么写:</p>
+<pre><code class="lang-lua">add_requires("tbox", "libpng", "zlib")
+</code></pre>
+<p>这会使用已知的最新版本包,或者是master分支的源码编译的包,如果当前包有git repo地址,我们也能指定特定分支版本:</p>
+<pre><code class="lang-lua">add_requires("tbox master")
+add_requires("tbox dev")
+</code></pre>
+<h5 id="">额外的包信息设置</h5>
+<h6 id="">可选包设置</h6>
+<p>如果指定的依赖包当前平台不支持,或者编译安装失败了,那么xmake会编译报错,这对于有些必须要依赖某些包才能工作的项目,这是合理的。<br>但是如果有些包是可选的依赖,即使没有也可以正常编译使用的话,可以设置为可选包:</p>
+<pre><code class="lang-lua">add_requires("tbox", {optional = true})
+</code></pre>
+<h6 id="">禁用系统库</h6>
+<p>默认的设置,xmake会去优先检测系统库是否存在(如果没设置版本要求),如果用户完全不想使用系统库以及第三方包管理提供的库,那么可以设置:</p>
+<pre><code class="lang-lua">add_requires("tbox", {system = false})
+</code></pre>
+<h6 id="">使用调试版本的包</h6>
+<p>如果我们想同时源码调试依赖包,那么可以设置为使用debug版本的包(当然前提是这个包支持debug编译):</p>
+<pre><code class="lang-lua">add_requires("tbox", {debug = true})
+</code></pre>
+<p>如果当前包还不支持debug编译,可在仓库中提交修改编译规则,对debug进行支持,例如:</p>
+<pre><code class="lang-lua">package("openssl")
+    on_install("linux", "macosx", function (package)
+        os.vrun("./config %s --prefix=\"%s\"", package:debug() and "--debug" or "", package:installdir())
+        os.vrun("make -j4")
+        os.vrun("make install")
+    end)
+</code></pre>
+<h6 id="">传递额外的编译信息到包</h6>
+<p>某些包在编译时候有各种编译选项,我们也可以传递进来,当然包本身得支持:</p>
+<pre><code class="lang-lua">add_requires("tbox", {configs = {small=true}})
+</code></pre>
+<p>传递<code>--small=true</code>给tbox包,使得编译安装的tbox包是启用此选项的。</p>
+<h5 id="">第三方依赖包安装</h5>
+<p>2.2.5版本之后,xmake支持对对第三方包管理器里面的依赖库安装支持,例如:conan,brew, vcpkg等</p>
+<p>添加homebrew的依赖包:</p>
+<pre><code class="lang-lua">add_requires("brew::zlib", {alias = "zlib"}})
+add_requires("brew::pcre2/libpcre2-8", {alias = "pcre2"}})
+
+target("test")
+    set_kind("binary")
+    add_files("src/*.c") 
+    add_packages("pcre2", "zlib")
+</code></pre>
+<p>添加vcpkg的依赖包:</p>
+<pre><code class="lang-lua">add_requires("vcpkg::zlib", "vcpkg::pcre2")
+
+target("test")
+    set_kind("binary")
+    add_files("src/*.c") 
+    add_packages("vcpkg::zlib", "vcpkg::pcre2")
+</code></pre>
+<p>添加conan的依赖包:</p>
+<pre><code class="lang-lua">add_requires("CONAN::zlib/1.2.11@conan/stable", {alias = "zlib", debug = true})
+add_requires("CONAN::OpenSSL/1.0.2n@conan/stable", {alias = "openssl", 
+    configs = {options = "OpenSSL:shared=True"}})
+
+target("test")
+    set_kind("binary")
+    add_files("src/*.c") 
+    add_packages("openssl", "zlib")
+</code></pre>
+<p>执行xmake进行编译后:</p>
+<pre><code class="lang-console">ruki:test_package ruki$ xmake
+checking for the architecture ... x86_64
+checking for the Xcode directory ... /Applications/Xcode.app
+checking for the SDK version of Xcode ... 10.14
+note: try installing these packages (pass -y to skip confirm)?
+  -> CONAN::zlib/1.2.11@conan/stable  (debug)
+  -> CONAN::OpenSSL/1.0.2n@conan/stable  
+please input: y (y/n)
+
+  => installing CONAN::zlib/1.2.11@conan/stable .. ok
+  => installing CONAN::OpenSSL/1.0.2n@conan/stable .. ok
+
+[  0%]: ccache compiling.release src/main.c
+[100%]: linking.release test
+</code></pre>
+<h5 id="">使用自建私有包仓库</h5>
+<p>如果需要的包不在官方仓库<a href="https://github.com/xmake-io/xmake-repo">xmake-repo</a>中,我们可以提交贡献代码到仓库进行支持。<br>但如果有些包仅用于个人或者私有项目,我们可以建立一个私有仓库repo,仓库组织结构可参考:<a href="https://github.com/xmake-io/xmake-repo">xmake-repo</a></p>
+<p>比如,现在我们有一个一个私有仓库repo:<a href="mailto:`[email protected]">`[email protected]</a>:myrepo/xmake-repo.git`</p>
+<p>我们可以通过下面的命令进行仓库添加:</p>
+<pre><code class="lang-console">$ xmake repo --add myrepo [email protected]:myrepo/xmake-repo.git
+</code></pre>
+<p>或者我们直接写在xmake.lua中:</p>
+<pre><code class="lang-lua">add_repositories("my-repo [email protected]:myrepo/xmake-repo.git")
+</code></pre>
+<p>如果我们只是想添加一两个私有包,这个时候特定去建立一个git repo太小题大做了,我们可以直接把包仓库放置项目里面,例如:</p>
+<pre><code>projectdir
+  - myrepo
+    - packages
+      - t/tbox/xmake.lua
+      - z/zlib/xmake.lua
+  - src
+    - main.c
+  - xmake.lua
+</code></pre><p>上面myrepo目录就是自己的私有包仓库,内置在自己的项目里面,然后在xmake.lua里面添加一下这个仓库位置:</p>
+<pre><code class="lang-lua">add_repositories("my-repo myrepo")
+</code></pre>
+<p>这个可以参考<a href="https://github.com/tboox/benchbox">benchbox</a>项目,里面就内置了一个私有仓库。</p>
+<p>我们甚至可以连仓库也不用建,直接定义包描述到项目xmake.lua中,这对依赖一两个包的情况还是很有用的,例如:</p>
+<pre><code class="lang-lua">package("libjpeg")
+
+    set_urls("http://www.ijg.org/files/jpegsrc.$(version).tar.gz")
+
+    add_versions("v9c", "650250979303a649e21f87b5ccd02672af1ea6954b911342ea491f351ceb7122")
+
+    on_install("windows", function (package)
+        os.mv("jconfig.vc", "jconfig.h")
+        os.vrun("nmake -f makefile.vc")
+        os.cp("*.h", package:installdir("include"))
+        os.cp("libjpeg.lib", package:installdir("lib"))
+    end)
+
+    on_install("macosx", "linux", function (package)
+        import("package.tools.autoconf").install(package)
+    end)
+
+package_end()
+
+add_requires("libjpeg")
+
+target("test")
+    set_kind("binary")
+    add_files("src/*.c") 
+    add_packages("libjpeg")
+</code></pre>
+<h5 id="">包管理命令使用</h5>
+<p>包管理命令<code>$ xmake require</code> 可用于手动显示的下载编译安装、卸载、检索、查看包信息。</p>
+<h6 id="">安装指定包</h6>
+<pre><code class="lang-console">$ xmake require tbox
+</code></pre>
+<p>安装指定版本包:</p>
+<pre><code class="lang-console">$ xmake require tbox "~1.6"
+</code></pre>
+<p>强制重新下载安装,并且显示详细安装信息:</p>
+<pre><code class="lang-console">$ xmake require -f -v tbox "1.5.x"
+</code></pre>
+<p>传递额外的设置信息:</p>
+<pre><code class="lang-console">$ xmake require --extra="debug=true,config={small=true}" tbox
+</code></pre>
+<p>安装debug包,并且传递<code>small=true</code>的编译配置信息到包中去。</p>
+<h6 id="">卸载指定包</h6>
+<pre><code class="lang-console">$ xmake require --uninstall tbox
+</code></pre>
+<p>这会完全卸载删除包文件。</p>
+<h6 id="">查看包详细信息</h6>
+<pre><code class="lang-console">$ xmake require --info tbox
+</code></pre>
+<h6 id="">在当前仓库中搜索包</h6>
+<pre><code class="lang-console">$ xmake require --search tbox
+</code></pre>
+<p>这个是支持模糊搜素以及lua模式匹配搜索的:</p>
+<pre><code class="lang-console">$ xmake require --search pcr
+</code></pre>
+<p>会同时搜索到pcre, pcre2等包。</p>
+<h6 id="">列举当前已安装的包</h6>
+<pre><code class="lang-console">$ xmake require --list
+</code></pre>
+<h5 id="">仓库管理命令使用</h5>
+<p>上文已经简单讲过,添加私有仓库可以用(支持本地路径添加):</p>
+<pre><code class="lang-console">$ xmake repo --add myrepo [email protected]:myrepo/xmake-repo.git
+</code></pre>
+<p>v2.2.3开始,支持添加指定分支的repo,例如:</p>
+<pre><code class="lang-console">$ xmake repo --add myrepo [email protected]:myrepo/xmake-repo.git dev
+</code></pre>
+<p>我们也可以移除已安装的某个仓库:</p>
+<pre><code class="lang-console">$ xmake repo --remove myrepo
+</code></pre>
+<p>或者查看所有已添加的仓库:</p>
+<pre><code class="lang-console">$ xmake repo --list
+</code></pre>
+<p>如果远程仓库有更新,可以手动执行仓库更新,来获取更多、最新的包:</p>
+<pre><code class="lang-console">$ xmake repo -u
+</code></pre>
+<h5 id="">提交包到官方仓库</h5>
+<p>目前这个特性刚完成不久,目前官方仓库的包还不是很多,有些包也许还不支持部分平台,不过这并不是太大问题,后期迭代几个版本后,我会不断扩充完善包仓库。</p>
+<p>如果你需要的包,当前的官方仓库还没有收录,可以提交issues或者自己可以在本地调通后,贡献提交到官方仓库:<a href="https://github.com/xmake-io/xmake-repo">xmake-repo</a></p>
+<p>详细的贡献说明,见:<a href="https://github.com/xmake-io/xmake-repo/blob/master/CONTRIBUTING.md">CONTRIBUTING.md</a></p>
+<h2 id="">问答</h2>
+<h4 id="">怎样获取更多参数选项信息?</h4>
+<p>获取主菜单的帮助信息,里面有所有action和plugin的列表描述。</p>
+<pre><code class="lang-bash">$ xmake [-h|--help]
+</code></pre>
+<p>获取配置菜单的帮助信息,里面有所有配置选项的描述信息,以及支持平台、架构列表。</p>
+<pre><code class="lang-bash">$ xmake f [-h|--help]
+</code></pre>
+<p>获取action和plugin命令菜单的帮助信息,里面有所有内置命令和插件任务的参数使用信息。</p>
+<pre><code class="lang-bash">$ xmake [action|plugin] [-h|--help]
+</code></pre>
+<p>例如,获取<code>run</code>命令的参数信息:</p>
+<pre><code class="lang-bash">$ xmake run --help
+</code></pre>
+<h4 id="">怎样实现静默构建,不输出任何信息?</h4>
+<pre><code class="lang-bash">$ xmake [-q|--quiet]
+</code></pre>
+<h4 id="xmake">如果xmake运行失败了怎么办?</h4>
+<p>可以先尝试清除下配置,重新构建下:</p>
+<pre><code class="lang-bash">$ xmake f -c
+$ xmake
+</code></pre>
+<p>如果还是失败了,请加上 <code>-v</code> 或者 <code>--verbose</code> 选项重新执行xmake后,获取更加详细的输出信息</p>
+<p>例如:</p>
+<pre><code class="lang-hash">$ xmake [-v|--verbose] 
+</code></pre>
+<p>并且可以加上 <code>--backtrace</code> 选项获取出错时的xmake的调试栈信息, 然后你可以提交这些信息到<a href="https://github.com/xmake-io/xmake/issues">issues</a>.</p>
+<pre><code class="lang-bash">$ xmake -v --backtrace
+</code></pre>
+<h4 id="">怎样看实时编译警告信息?</h4>
+<p>为了避免刷屏,在构建时候,默认是不实时输出警告信息的,如果想要看的话可以加上<code>-w</code>选项启用编译警告输出就行了。</p>
+<pre><code class="lang-bash">$ xmake [-w|--warning] 
+</code></pre>
+<h4 id="xmakelua">怎样基于源码自动生成xmake.lua</h4>
+<p>如果你想临时写一两个测试代码、或者手上有一些移植过来的零散源码想要快速编译运行,可以不用专门xmake.lua,直接运行:</p>
+<pre><code class="lang-bash">$ xmake
+</code></pre>
+<p>xmake会自动扫描分析当前的源码目录,识别程序结构和类型,生成一个xmake.lua,并且会尝试直接构建它。</p>
+<p>如果编译成功,可以直接运行:</p>
+<pre><code class="lang-bash">$ xmake run
+</code></pre>
+<p>当然,如果仅仅只是想要生成xmake.lua,默认不去构建,可以执行:</p>
+<pre><code class="lang-bash">$ xmake f -y
+</code></pre>
+<p>更多相关介绍,请参考文章:<a href="https://tboox.org/cn/2017/01/07/build-without-makefile/">xmake新增智能代码扫描编译模式,无需手写任何make文件</a></p>
+</article>
+</body>
+</html>

+ 1416 - 0
mirror/packages/android.html

@@ -0,0 +1,1416 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/android">https://xrepo.xmake.io/#/packages/android</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="autoconfandroid">autoconf (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakeandroid">automake (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2candroid">bin2c (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="catch2android">catch2 (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cjsonandroid">cjson (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Ultralightweight JSON parser in ANSI C.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/DaveGamble/cJSON">https://github.com/DaveGamble/cJSON</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.7.10</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cjson/xmake.lua">cjson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] cjson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cjson")
+</code></pre>
+<h3 id="cmakeandroid">cmake (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="concurrentqueueandroid">concurrentqueue (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowandroid">cpp-taskflow (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptsandroid">cxxopts (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestandroid">doctest (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="ffmpegandroid">ffmpeg (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A collection of libraries to process multimedia content such as audio, video, subtitles and related metadata.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.ffmpeg.org">https://www.ffmpeg.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.0.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/ffmpeg/xmake.lua">ffmpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] ffmpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ffmpeg")
+</code></pre>
+<h3 id="fmtandroid">fmt (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="gtestandroid">gtest (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="imguiandroid">imgui (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ocornut/imgui">https://github.com/ocornut/imgui</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.75, v1.79</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua">imgui/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] imgui
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("imgui")
+</code></pre>
+<h3 id="injaandroid">inja (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmlandroid">irrXML (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="j">j</h2>
+<h3 id="jsoncandroid">json-c (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON parser for C</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/json-c/json-c/wiki">https://github.com/json-c/json-c/wiki</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.13.1-20180305</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/j/json-c/xmake.lua">json-c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] json-c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("json-c")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libjpegandroid">libjpeg (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="libpngandroid">libpng (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The official PNG reference library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libpng.org/pub/png/libpng.html">http://www.libpng.org/pub/png/libpng.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.36, v1.6.35, v1.6.34</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua">libpng/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] libpng
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libpng")
+</code></pre>
+<h3 id="libtoolandroid">libtool (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h3 id="libuvandroid">libuv (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A multi-platform support library with a focus on asynchronous I/O.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://libuv.org/">http://libuv.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua">libuv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] libuv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libuv")
+</code></pre>
+<h3 id="libxmakeandroid">libxmake (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The c/c++ bindings of the xmake core engine</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://xmake.io">https://xmake.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.3.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua">libxmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] libxmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxmake")
+</code></pre>
+<h3 id="libxml2android">libxml2 (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The XML C parser and toolkit of Gnome.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://xmlsoft.org/">http://xmlsoft.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua">libxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] libxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxml2")
+</code></pre>
+<h3 id="luaandroid">lua (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A powerful, efficient, lightweight, embeddable scripting language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://lua.org">http://lua.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.3.5, 5.1.5, 5.2.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua">lua/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] lua
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("lua")
+</code></pre>
+<h3 id="luajitandroid">luajit (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://luajit.org">http://luajit.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0-beta3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua">luajit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] luajit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("luajit")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4android">m4 (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makeandroid">make (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mesonandroid">meson (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h3 id="moonjitandroid">moonjit (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/moonjit/moonjit">https://github.com/moonjit/moonjit</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua">moonjit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] moonjit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("moonjit")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nasmandroid">nasm (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ninjaandroid">ninja (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsonandroid">nlohmann_json (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchandroid">patch (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pkgconfigandroid">pkg-config (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protocandroid">protoc (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11android">pybind11 (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythonandroid">python (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2android">python2 (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="spdlogandroid">spdlog (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="stbandroid">stb (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxandroid">tbox (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tinyxml2android">tinyxml2 (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>simple, small, efficient, C++ XML parser that can be easily integrating into other programs.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.grinninglizard.com/tinyxml2/">http://www.grinninglizard.com/tinyxml2/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua">tinyxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] tinyxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tinyxml2")
+</code></pre>
+<h3 id="tmxparserandroid">tmxparser (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmandroid">yasm (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+<h2 id="z">z</h2>
+<h3 id="zlibandroid">zlib (android)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Massively Spiffy Yet Delicately Unobtrusive Compression Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.zlib.net">http://www.zlib.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.10, 1.2.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua">zlib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p android [--ndk=/xxx] zlib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zlib")
+</code></pre>
+</article>
+</body>
+</html>

+ 1153 - 0
mirror/packages/bsd.html

@@ -0,0 +1,1153 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/bsd">https://xrepo.xmake.io/#/packages/bsd</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="autoconfbsd">autoconf (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakebsd">automake (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2cbsd">bin2c (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="catch2bsd">catch2 (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cmakebsd">cmake (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="concurrentqueuebsd">concurrentqueue (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowbsd">cpp-taskflow (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptsbsd">cxxopts (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestbsd">doctest (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="fmtbsd">fmt (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="gtestbsd">gtest (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="injabsd">inja (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmlbsd">irrXML (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libjpegbsd">libjpeg (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="libtoolbsd">libtool (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h3 id="luabsd">lua (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A powerful, efficient, lightweight, embeddable scripting language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://lua.org">http://lua.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.3.5, 5.1.5, 5.2.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua">lua/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install lua
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("lua")
+</code></pre>
+<h3 id="luajitbsd">luajit (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://luajit.org">http://luajit.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0-beta3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua">luajit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install luajit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("luajit")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4bsd">m4 (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makebsd">make (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mesonbsd">meson (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h3 id="moonjitbsd">moonjit (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/moonjit/moonjit">https://github.com/moonjit/moonjit</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua">moonjit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install moonjit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("moonjit")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nasmbsd">nasm (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ncursesbsd">ncurses (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free software emulation of curses.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/ncurses/">https://www.gnu.org/software/ncurses/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ncurses/xmake.lua">ncurses/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ncurses
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ncurses")
+</code></pre>
+<h3 id="ninjabsd">ninja (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsonbsd">nlohmann_json (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchbsd">patch (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pkgconfigbsd">pkg-config (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protocbsd">protoc (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11bsd">pybind11 (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythonbsd">python (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2bsd">python2 (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="spdlogbsd">spdlog (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="stbbsd">stb (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxbsd">tbox (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tmxparserbsd">tmxparser (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmbsd">yasm (bsd)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+</article>
+</body>
+</html>

+ 1097 - 0
mirror/packages/cross.html

@@ -0,0 +1,1097 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/cross">https://xrepo.xmake.io/#/packages/cross</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="autoconfcross">autoconf (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakecross">automake (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2ccross">bin2c (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="catch2cross">catch2 (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cmakecross">cmake (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="concurrentqueuecross">concurrentqueue (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowcross">cpp-taskflow (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptscross">cxxopts (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestcross">doctest (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="fmtcross">fmt (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="gtestcross">gtest (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="injacross">inja (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmlcross">irrXML (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libjpegcross">libjpeg (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="libtoolcross">libtool (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4cross">m4 (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makecross">make (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mesoncross">meson (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nasmcross">nasm (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ninjacross">ninja (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsoncross">nlohmann_json (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="o">o</h2>
+<h3 id="opensslcross">openssl (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A robust, commercial-grade, and full-featured toolkit for TLS and SSL.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.openssl.org/">https://www.openssl.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.1, 1.0.2, 1.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/o/openssl/xmake.lua">openssl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] openssl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("openssl")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchcross">patch (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pkgconfigcross">pkg-config (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protoccross">protoc (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11cross">pybind11 (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythoncross">python (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2cross">python2 (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="spdlogcross">spdlog (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="stbcross">stb (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxcross">tbox (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tmxparsercross">tmxparser (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmcross">yasm (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+<h2 id="z">z</h2>
+<h3 id="zlibcross">zlib (cross)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Massively Spiffy Yet Delicately Unobtrusive Compression Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.zlib.net">http://www.zlib.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.10, 1.2.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua">zlib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p cross [--sdk=/xxx] zlib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zlib")
+</code></pre>
+</article>
+</body>
+</html>

+ 1445 - 0
mirror/packages/iphoneos.html

@@ -0,0 +1,1445 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/iphoneos">https://xrepo.xmake.io/#/packages/iphoneos</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="autoconfiphoneos">autoconf (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakeiphoneos">automake (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2ciphoneos">bin2c (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="catch2iphoneos">catch2 (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cjsoniphoneos">cjson (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Ultralightweight JSON parser in ANSI C.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/DaveGamble/cJSON">https://github.com/DaveGamble/cJSON</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.7.10</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cjson/xmake.lua">cjson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos cjson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cjson")
+</code></pre>
+<h3 id="cmakeiphoneos">cmake (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="concurrentqueueiphoneos">concurrentqueue (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowiphoneos">cpp-taskflow (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptsiphoneos">cxxopts (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestiphoneos">doctest (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="fmtiphoneos">fmt (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="gtestiphoneos">gtest (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="imguiiphoneos">imgui (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ocornut/imgui">https://github.com/ocornut/imgui</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.75, v1.79</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua">imgui/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos imgui
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("imgui")
+</code></pre>
+<h3 id="injaiphoneos">inja (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmliphoneos">irrXML (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="j">j</h2>
+<h3 id="jsonciphoneos">json-c (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON parser for C</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/json-c/json-c/wiki">https://github.com/json-c/json-c/wiki</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.13.1-20180305</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/j/json-c/xmake.lua">json-c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos json-c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("json-c")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libcurliphoneos">libcurl (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The multiprotocol file transfer library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://curl.haxx.se/">https://curl.haxx.se/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>7.64.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libcurl/xmake.lua">libcurl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libcurl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libcurl")
+</code></pre>
+<h3 id="libeviphoneos">libev (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Full-featured high-performance event loop loosely modelled after libevent.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://software.schmorp.de/pkg/libev">http://software.schmorp.de/pkg/libev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.24</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libev/xmake.lua">libev/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libev
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libev")
+</code></pre>
+<h3 id="libffiiphoneos">libffi (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Portable Foreign Function Interface library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceware.org/libffi/">https://sourceware.org/libffi/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libffi/xmake.lua">libffi/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libffi
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libffi")
+</code></pre>
+<h3 id="libjpegiphoneos">libjpeg (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="libpngiphoneos">libpng (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The official PNG reference library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libpng.org/pub/png/libpng.html">http://www.libpng.org/pub/png/libpng.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.36, v1.6.35, v1.6.34</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua">libpng/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libpng
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libpng")
+</code></pre>
+<h3 id="librawiphoneos">libraw (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>LibRaw is a library for reading RAW files from digital cameras.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libraw.org">http://www.libraw.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.19.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua">libraw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libraw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libraw")
+</code></pre>
+<h3 id="libtooliphoneos">libtool (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h3 id="libuviphoneos">libuv (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A multi-platform support library with a focus on asynchronous I/O.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://libuv.org/">http://libuv.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua">libuv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libuv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libuv")
+</code></pre>
+<h3 id="libxml2iphoneos">libxml2 (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The XML C parser and toolkit of Gnome.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://xmlsoft.org/">http://xmlsoft.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua">libxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos libxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxml2")
+</code></pre>
+<h3 id="luajitiphoneos">luajit (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://luajit.org">http://luajit.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0-beta3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua">luajit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos luajit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("luajit")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4iphoneos">m4 (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makeiphoneos">make (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mesoniphoneos">meson (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h3 id="moonjitiphoneos">moonjit (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/moonjit/moonjit">https://github.com/moonjit/moonjit</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua">moonjit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos moonjit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("moonjit")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nasmiphoneos">nasm (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ninjaiphoneos">ninja (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsoniphoneos">nlohmann_json (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchiphoneos">patch (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pkgconfigiphoneos">pkg-config (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protociphoneos">protoc (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11iphoneos">pybind11 (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythoniphoneos">python (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2iphoneos">python2 (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="spdlogiphoneos">spdlog (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="stbiphoneos">stb (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxiphoneos">tbox (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tinyxml2iphoneos">tinyxml2 (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>simple, small, efficient, C++ XML parser that can be easily integrating into other programs.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.grinninglizard.com/tinyxml2/">http://www.grinninglizard.com/tinyxml2/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua">tinyxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos tinyxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tinyxml2")
+</code></pre>
+<h3 id="tmxparseriphoneos">tmxparser (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmiphoneos">yasm (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+<h2 id="z">z</h2>
+<h3 id="zlibiphoneos">zlib (iphoneos)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Massively Spiffy Yet Delicately Unobtrusive Compression Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.zlib.net">http://www.zlib.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.10, 1.2.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua">zlib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p iphoneos zlib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zlib")
+</code></pre>
+</article>
+</body>
+</html>

+ 3885 - 0
mirror/packages/linux.html

@@ -0,0 +1,3885 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/linux">https://xrepo.xmake.io/#/packages/linux</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="abseillinux">abseil (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ Common Libraries</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://abseil.io">https://abseil.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>20200225.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/abseil/xmake.lua">abseil/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install abseil
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("abseil")
+</code></pre>
+<h3 id="assimplinux">assimp (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Portable Open-Source library to import various well-known 3D model formats in a uniform manner</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://assimp.org">https://assimp.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/assimp/xmake.lua">assimp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install assimp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("assimp")
+</code></pre>
+<h3 id="autoconflinux">autoconf (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakelinux">automake (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2clinux">bin2c (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h3 id="boostlinux">boost (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Collection of portable C++ source libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.boost.org/">https://www.boost.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.72.0, 1.73.0, 1.70.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/boost/xmake.lua">boost/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install boost
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("boost")
+</code></pre>
+<h3 id="box2dlinux">box2d (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A 2D Physics Engine for Games</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://box2d.org">https://box2d.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/box2d/xmake.lua">box2d/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install box2d
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("box2d")
+</code></pre>
+<h3 id="bullet3linux">bullet3 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bullet Physics SDK.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bulletphysics.org">http://bulletphysics.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.05, 2.88</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bullet3/xmake.lua">bullet3/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bullet3
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bullet3")
+</code></pre>
+<h3 id="bzip2linux">bzip2 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Freely available high-quality data compressor.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://en.wikipedia.org/wiki/Bzip2">https://en.wikipedia.org/wiki/Bzip2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bzip2/xmake.lua">bzip2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bzip2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bzip2")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="cairolinux">cairo (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Vector graphics library with cross-device output support.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cairographics.org/">https://cairographics.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.16.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cairo/xmake.lua">cairo/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cairo
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cairo")
+</code></pre>
+<h3 id="catch2linux">catch2 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cjsonlinux">cjson (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Ultralightweight JSON parser in ANSI C.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/DaveGamble/cJSON">https://github.com/DaveGamble/cJSON</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.7.10</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cjson/xmake.lua">cjson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cjson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cjson")
+</code></pre>
+<h3 id="cmakelinux">cmake (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="colinux">co (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Yet another libco and more.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/idealvin/co">https://github.com/idealvin/co</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/co/xmake.lua">co/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install co
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("co")
+</code></pre>
+<h3 id="concurrentqueuelinux">concurrentqueue (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowlinux">cpp-taskflow (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptslinux">cxxopts (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestlinux">doctest (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="e">e</h2>
+<h3 id="eigenlinux">eigen (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ template library for linear algebra</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://eigen.tuxfamily.org/">https://eigen.tuxfamily.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.3.8, 3.3.7</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/e/eigen/xmake.lua">eigen/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install eigen
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("eigen")
+</code></pre>
+<h3 id="expatlinux">expat (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>XML 1.0 parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://libexpat.github.io">https://libexpat.github.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expat/xmake.lua">expat/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install expat
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("expat")
+</code></pre>
+<h3 id="expresscpplinux">expresscpp (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast, unopinionated, minimalist web framework for C++ Perfect for building REST APIs.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/expresscpp/expresscpp.git">https://github.com/expresscpp/expresscpp.git</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v0.20.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expresscpp/xmake.lua">expresscpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install expresscpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("expresscpp")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="ffmpeglinux">ffmpeg (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A collection of libraries to process multimedia content such as audio, video, subtitles and related metadata.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.ffmpeg.org">https://www.ffmpeg.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.0.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/ffmpeg/xmake.lua">ffmpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ffmpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ffmpeg")
+</code></pre>
+<h3 id="fmtlinux">fmt (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h3 id="fontconfiglinux">fontconfig (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A library for configuring and customizing font access.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.freedesktop.org/wiki/Software/fontconfig/">https://www.freedesktop.org/wiki/Software/fontconfig/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fontconfig/xmake.lua">fontconfig/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install fontconfig
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fontconfig")
+</code></pre>
+<h3 id="freeglutlinux">freeglut (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free-software/open-source alternative to the OpenGL Utility Toolkit (GLUT) library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://freeglut.sourceforge.net">http://freeglut.sourceforge.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freeglut/xmake.lua">freeglut/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install freeglut
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("freeglut")
+</code></pre>
+<h3 id="freetypelinux">freetype (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A freely available software library to render fonts.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.freetype.org">https://www.freetype.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freetype/xmake.lua">freetype/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install freetype
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("freetype")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="gettextlinux">gettext (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU internationalization (i18n) and localization (l10n) library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/gettext/">https://www.gnu.org/software/gettext/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.19.8-1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gettext/xmake.lua">gettext/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gettext
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gettext")
+</code></pre>
+<h3 id="glewlinux">glew (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform open-source C/C++ extension loading library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://glew.sourceforge.net/">http://glew.sourceforge.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glew/xmake.lua">glew/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install glew
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glew")
+</code></pre>
+<h3 id="glfwlinux">glfw (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.glfw.org/">https://www.glfw.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glfw/xmake.lua">glfw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install glfw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glfw")
+</code></pre>
+<h3 id="gliblinux">glib (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Core application library for C.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developer.gnome.org/glib/">https://developer.gnome.org/glib/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.60.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glib/xmake.lua">glib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install glib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glib")
+</code></pre>
+<h3 id="golinux">go (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The Go Programming Language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://golang.org/">https://golang.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/go/xmake.lua">go/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install go
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("go")
+</code></pre>
+<h3 id="gperflinux">gperf (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Perfect hash function generator.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/gperf">https://www.gnu.org/software/gperf</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gperf/xmake.lua">gperf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gperf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gperf")
+</code></pre>
+<h3 id="gtestlinux">gtest (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="icu4clinux">icu4c (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C/C++ libraries for Unicode and globalization.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ssl.icu-project.org/">https://ssl.icu-project.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>64.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/icu4c/xmake.lua">icu4c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install icu4c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("icu4c")
+</code></pre>
+<h3 id="imguilinux">imgui (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ocornut/imgui">https://github.com/ocornut/imgui</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.75, v1.79</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua">imgui/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install imgui
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("imgui")
+</code></pre>
+<h3 id="injalinux">inja (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmllinux">irrXML (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="j">j</h2>
+<h3 id="jsonclinux">json-c (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON parser for C</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/json-c/json-c/wiki">https://github.com/json-c/json-c/wiki</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.13.1-20180305</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/j/json-c/xmake.lua">json-c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install json-c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("json-c")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libcurllinux">libcurl (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The multiprotocol file transfer library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://curl.haxx.se/">https://curl.haxx.se/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>7.64.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libcurl/xmake.lua">libcurl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libcurl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libcurl")
+</code></pre>
+<h3 id="libelflinux">libelf (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>ELF object file access library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://web.archive.org/web/20181111033959/www.mr511.de/software/english.html">https://web.archive.org/web/20181111033959/www.mr511.de/software/english.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.8.13</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libelf/xmake.lua">libelf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libelf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libelf")
+</code></pre>
+<h3 id="libevlinux">libev (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Full-featured high-performance event loop loosely modelled after libevent.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://software.schmorp.de/pkg/libev">http://software.schmorp.de/pkg/libev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.24</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libev/xmake.lua">libev/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libev
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libev")
+</code></pre>
+<h3 id="libffilinux">libffi (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Portable Foreign Function Interface library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceware.org/libffi/">https://sourceware.org/libffi/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libffi/xmake.lua">libffi/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libffi
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libffi")
+</code></pre>
+<h3 id="libiconvlinux">libiconv (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Character set conversion library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libiconv">https://www.gnu.org/software/libiconv</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libiconv/xmake.lua">libiconv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libiconv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libiconv")
+</code></pre>
+<h3 id="libjpeglinux">libjpeg (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="libmilllinux">libmill (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Go-style concurrency in C</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://libmill.org">http://libmill.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.18, 1.17</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libmill/xmake.lua">libmill/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libmill
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libmill")
+</code></pre>
+<h3 id="libomplinux">libomp (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>LLVM&#39;s OpenMP runtime library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://openmp.llvm.org/">https://openmp.llvm.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>10.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libomp/xmake.lua">libomp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libomp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libomp")
+</code></pre>
+<h3 id="libpnglinux">libpng (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The official PNG reference library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libpng.org/pub/png/libpng.html">http://www.libpng.org/pub/png/libpng.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.36, v1.6.35, v1.6.34</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua">libpng/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libpng
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libpng")
+</code></pre>
+<h3 id="libpthreadstubslinux">libpthread-stubs (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: pthread-stubs.pc</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpthread-stubs/xmake.lua">libpthread-stubs/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libpthread-stubs
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libpthread-stubs")
+</code></pre>
+<h3 id="librawlinux">libraw (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>LibRaw is a library for reading RAW files from digital cameras.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libraw.org">http://www.libraw.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.19.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua">libraw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libraw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libraw")
+</code></pre>
+<h3 id="libsdllinux">libsdl (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/">https://www.libsdl.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.8</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl/xmake.lua">libsdl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl")
+</code></pre>
+<h3 id="libsdl_gfxlinux">libsdl_gfx (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer primitives drawing library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/">https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_gfx/xmake.lua">libsdl_gfx/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_gfx
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_gfx")
+</code></pre>
+<h3 id="libsdl_imagelinux">libsdl_image (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer image loading library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libsdl.org/projects/SDL_image/">http://www.libsdl.org/projects/SDL_image/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_image/xmake.lua">libsdl_image/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_image
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_image")
+</code></pre>
+<h3 id="libsdl_mixerlinux">libsdl_mixer (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer mixer audio library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_mixer/">https://www.libsdl.org/projects/SDL_mixer/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_mixer/xmake.lua">libsdl_mixer/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_mixer
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_mixer")
+</code></pre>
+<h3 id="libsdl_netlinux">libsdl_net (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer networking library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_net/">https://www.libsdl.org/projects/SDL_net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_net/xmake.lua">libsdl_net/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_net
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_net")
+</code></pre>
+<h3 id="libsdl_ttflinux">libsdl_ttf (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer text rendering library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_ttf/">https://www.libsdl.org/projects/SDL_ttf/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_ttf/xmake.lua">libsdl_ttf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_ttf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_ttf")
+</code></pre>
+<h3 id="libtasklinux">libtask (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>a Coroutine Library for C and Unix</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://swtch.com/libtask/">https://swtch.com/libtask/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtask/xmake.lua">libtask/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtask
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtask")
+</code></pre>
+<h3 id="libtifflinux">libtiff (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>TIFF Library and Utilities.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.simplesystems.org/libtiff/">http://www.simplesystems.org/libtiff/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtiff/xmake.lua">libtiff/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtiff
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtiff")
+</code></pre>
+<h3 id="libtoollinux">libtool (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h3 id="libusblinux">libusb (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform library to access USB devices.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://libusb.info">https://libusb.info</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.0.23</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libusb/xmake.lua">libusb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libusb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libusb")
+</code></pre>
+<h3 id="libuvlinux">libuv (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A multi-platform support library with a focus on asynchronous I/O.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://libuv.org/">http://libuv.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua">libuv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libuv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libuv")
+</code></pre>
+<h3 id="libwebsocketslinux">libwebsockets (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>canonical libwebsockets.org websocket library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/warmcat/libwebsockets">https://github.com/warmcat/libwebsockets</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libwebsockets/xmake.lua">libwebsockets/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libwebsockets
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libwebsockets")
+</code></pre>
+<h3 id="libx11linux">libx11 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Core X11 protocol client library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.6.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libx11/xmake.lua">libx11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libx11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libx11")
+</code></pre>
+<h3 id="libxaulinux">libxau (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: A Sample Authorization Protocol for X</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxau/xmake.lua">libxau/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxau
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxau")
+</code></pre>
+<h3 id="libxcblinux">libxcb (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Interface to the X Window System protocol</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.13.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxcb/xmake.lua">libxcb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxcb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxcb")
+</code></pre>
+<h3 id="libxcursorlinux">libxcursor (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Window System Cursor management library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxcursor/xmake.lua">libxcursor/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxcursor
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxcursor")
+</code></pre>
+<h3 id="libxdamagelinux">libxdamage (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Damage Extension library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxdamage/xmake.lua">libxdamage/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxdamage
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxdamage")
+</code></pre>
+<h3 id="libxdmcplinux">libxdmcp (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Display Manager Control Protocol library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxdmcp/xmake.lua">libxdmcp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxdmcp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxdmcp")
+</code></pre>
+<h3 id="libxextlinux">libxext (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Library for common extensions to the X11 protocol</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxext/xmake.lua">libxext/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxext
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxext")
+</code></pre>
+<h3 id="libxfixeslinux">libxfixes (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Header files for the XFIXES extension</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.0.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxfixes/xmake.lua">libxfixes/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxfixes
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxfixes")
+</code></pre>
+<h3 id="libxilinux">libxi (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Library for the X Input Extension</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.7.10</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxi/xmake.lua">libxi/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxi
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxi")
+</code></pre>
+<h3 id="libxineramalinux">libxinerama (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: API for Xinerama extension to X11 Protocol</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxinerama/xmake.lua">libxinerama/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxinerama
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxinerama")
+</code></pre>
+<h3 id="libxmakelinux">libxmake (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The c/c++ bindings of the xmake core engine</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://xmake.io">https://xmake.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.3.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua">libxmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxmake")
+</code></pre>
+<h3 id="libxml2linux">libxml2 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The XML C parser and toolkit of Gnome.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://xmlsoft.org/">http://xmlsoft.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua">libxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxml2")
+</code></pre>
+<h3 id="libxrandrlinux">libxrandr (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Resize, Rotate and Reflection extension library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.5.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxrandr/xmake.lua">libxrandr/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxrandr
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxrandr")
+</code></pre>
+<h3 id="libxrenderlinux">libxrender (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Library for the Render Extension to the X11 protocol</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.9.10</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxrender/xmake.lua">libxrender/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxrender
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxrender")
+</code></pre>
+<h3 id="libxshmfencelinux">libxshmfence (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Shared memory &#39;SyncFence&#39; synchronization primitive</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxshmfence/xmake.lua">libxshmfence/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxshmfence
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxshmfence")
+</code></pre>
+<h3 id="libxvlinux">libxv (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Video (Xv) extension</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxv/xmake.lua">libxv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxv")
+</code></pre>
+<h3 id="libxvmclinux">libxvmc (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X-Video Motion Compensation API</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.12</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxvmc/xmake.lua">libxvmc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxvmc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxvmc")
+</code></pre>
+<h3 id="libxxf86vmlinux">libxxf86vm (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: XFree86-VidMode X extension</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxxf86vm/xmake.lua">libxxf86vm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxxf86vm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxxf86vm")
+</code></pre>
+<h3 id="libyamllinux">libyaml (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Canonical source repository for LibYAML.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://pyyaml.org/wiki/LibYAML">http://pyyaml.org/wiki/LibYAML</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.2.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libyaml/xmake.lua">libyaml/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libyaml
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libyaml")
+</code></pre>
+<h3 id="lieflinux">lief (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Library to Instrument Executable Formats.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://lief.quarkslab.com">https://lief.quarkslab.com</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.10.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lief/xmake.lua">lief/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install lief
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("lief")
+</code></pre>
+<h3 id="lualinux">lua (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A powerful, efficient, lightweight, embeddable scripting language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://lua.org">http://lua.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.3.5, 5.1.5, 5.2.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua">lua/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install lua
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("lua")
+</code></pre>
+<h3 id="luajitlinux">luajit (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://luajit.org">http://luajit.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0-beta3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua">luajit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install luajit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("luajit")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4linux">m4 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makelinux">make (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mbedtlslinux">mbedtls (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An SSL library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://tls.mbed.org">https://tls.mbed.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.0, 2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mbedtls/xmake.lua">mbedtls/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install mbedtls
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("mbedtls")
+</code></pre>
+<h3 id="mesonlinux">meson (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h3 id="monolinux">mono (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Cross platform, open source .NET development framework</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.mono-project.com/">https://www.mono-project.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.8.0+123</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mono/xmake.lua">mono/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install mono
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("mono")
+</code></pre>
+<h3 id="moonjitlinux">moonjit (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/moonjit/moonjit">https://github.com/moonjit/moonjit</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua">moonjit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install moonjit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("moonjit")
+</code></pre>
+<h3 id="mysqllinux">mysql (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Open source relational database management system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://dev.mysql.com/doc/refman/5.7/en/">https://dev.mysql.com/doc/refman/5.7/en/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.7.29</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mysql/xmake.lua">mysql/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install mysql
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("mysql")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nanalinux">nana (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A modern C++ GUI library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://nanapro.org">http://nanapro.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.7.2, 1.7.4, 1.6.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nana/xmake.lua">nana/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nana
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nana")
+</code></pre>
+<h3 id="nasmlinux">nasm (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ncurseslinux">ncurses (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free software emulation of curses.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/ncurses/">https://www.gnu.org/software/ncurses/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ncurses/xmake.lua">ncurses/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ncurses
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ncurses")
+</code></pre>
+<h3 id="ninjalinux">ninja (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsonlinux">nlohmann_json (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="o">o</h2>
+<h3 id="oatpplinux">oatpp (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modern Web Framework for C++. High performance, simple API, cross platform, zero dependency.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://oatpp.io/">https://oatpp.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/o/oatpp/xmake.lua">oatpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install oatpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("oatpp")
+</code></pre>
+<h3 id="opencvlinux">opencv (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A open source computer vision library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://opencv.org/">https://opencv.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.4.9, 4.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/o/opencv/xmake.lua">opencv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install opencv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("opencv")
+</code></pre>
+<h3 id="openssllinux">openssl (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A robust, commercial-grade, and full-featured toolkit for TLS and SSL.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.openssl.org/">https://www.openssl.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.1, 1.0.2, 1.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/o/openssl/xmake.lua">openssl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install openssl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("openssl")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchlinux">patch (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pcrelinux">pcre (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Perl Compatible Regular Expressions Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.pcre.org/">https://www.pcre.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.40, 8.41</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre/xmake.lua">pcre/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pcre
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pcre")
+</code></pre>
+<h3 id="pcre2linux">pcre2 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Perl Compatible Regular Expressions Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.pcre.org/">https://www.pcre.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>10.30, 10.31, 10.23</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre2/xmake.lua">pcre2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pcre2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pcre2")
+</code></pre>
+<h3 id="pixmanlinux">pixman (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Low-level library for pixel manipulation.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cairographics.org/">https://cairographics.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.38.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pixman/xmake.lua">pixman/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pixman
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pixman")
+</code></pre>
+<h3 id="pkgconfiglinux">pkg-config (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protobufclinux">protobuf-c (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format for c</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/protobuf-c/protobuf-c">https://github.com/protobuf-c/protobuf-c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-c/xmake.lua">protobuf-c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protobuf-c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protobuf-c")
+</code></pre>
+<h3 id="protobufcpplinux">protobuf-cpp (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format for cpp</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0, 3.12.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-cpp/xmake.lua">protobuf-cpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protobuf-cpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protobuf-cpp")
+</code></pre>
+<h3 id="protoclinux">protoc (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11linux">pybind11 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythonlinux">python (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2linux">python2 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="sfmllinux">sfml (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple and Fast Multimedia Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.sfml-dev.org">https://www.sfml-dev.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sfml/xmake.lua">sfml/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sfml
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sfml")
+</code></pre>
+<h3 id="skialinux">skia (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A complete 2D graphic library for drawing Text, Geometries, and Images.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://skia.org/">https://skia.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>68046c</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/skia/xmake.lua">skia/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install skia
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("skia")
+</code></pre>
+<h3 id="sol2linux">sol2 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A C++ library binding to Lua.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ThePhD/sol2">https://github.com/ThePhD/sol2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sol2/xmake.lua">sol2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sol2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sol2")
+</code></pre>
+<h3 id="spdloglinux">spdlog (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="sqlite3linux">sqlite3 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The most used database engine in the world</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sqlite.org/">https://sqlite.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.24.0, 3.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sqlite3/xmake.lua">sqlite3/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sqlite3
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sqlite3")
+</code></pre>
+<h3 id="stblinux">stb (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxlinux">tbox (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tinyxml2linux">tinyxml2 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>simple, small, efficient, C++ XML parser that can be easily integrating into other programs.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.grinninglizard.com/tinyxml2/">http://www.grinninglizard.com/tinyxml2/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua">tinyxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tinyxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tinyxml2")
+</code></pre>
+<h3 id="tmxparserlinux">tmxparser (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="u">u</h2>
+<h3 id="unqlitelinux">unqlite (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An Embedded NoSQL, Transactional Database Engine.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://unqlite.org">https://unqlite.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/u/unqlite/xmake.lua">unqlite/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install unqlite
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("unqlite")
+</code></pre>
+<h3 id="utillinuxlinux">util-linux (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Collection of Linux utilities.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/karelzak/util-linux">https://github.com/karelzak/util-linux</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.32.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/u/util-linux/xmake.lua">util-linux/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install util-linux
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("util-linux")
+</code></pre>
+<h3 id="utilmacroslinux">util-macros (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Set of autoconf macros used to build other xorg packages</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.19.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/u/util-macros/xmake.lua">util-macros/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install util-macros
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("util-macros")
+</code></pre>
+<h2 id="x">x</h2>
+<h3 id="x264linux">x264 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.videolan.org/developers/x264.html">https://www.videolan.org/developers/x264.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2018.09.25</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/x264/xmake.lua">x264/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install x264
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("x264")
+</code></pre>
+<h3 id="x265linux">x265 (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free software library and application for encoding video streams into the H.265/MPEG-H HEVC compression format.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://x265.org">http://x265.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/x265/xmake.lua">x265/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install x265
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("x265")
+</code></pre>
+<h3 id="xcbprotolinux">xcb-proto (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: XML-XCB protocol descriptions for libxcb code generation</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.13</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xcb-proto/xmake.lua">xcb-proto/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install xcb-proto
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xcb-proto")
+</code></pre>
+<h3 id="xorgprotolinux">xorgproto (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Protocol Headers</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2019.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xorgproto/xmake.lua">xorgproto/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install xorgproto
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xorgproto")
+</code></pre>
+<h3 id="xtranslinux">xtrans (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Network Transport layer shared code</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xtrans/xmake.lua">xtrans/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install xtrans
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xtrans")
+</code></pre>
+<h3 id="xzlinux">xz (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>General-purpose data compression with high compression ratio.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://tukaani.org/xz/">https://tukaani.org/xz/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.2.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xz/xmake.lua">xz/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install xz
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xz")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmlinux">yasm (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+<h2 id="z">z</h2>
+<h3 id="zeromqlinux">zeromq (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High-performance, asynchronous messaging library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://zeromq.org/">https://zeromq.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.3.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zeromq/xmake.lua">zeromq/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install zeromq
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zeromq")
+</code></pre>
+<h3 id="zliblinux">zlib (linux)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Massively Spiffy Yet Delicately Unobtrusive Compression Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.zlib.net">http://www.zlib.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.10, 1.2.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua">zlib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install zlib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zlib")
+</code></pre>
+</article>
+</body>
+</html>

+ 3828 - 0
mirror/packages/macosx.html

@@ -0,0 +1,3828 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/macosx">https://xrepo.xmake.io/#/packages/macosx</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="abseilmacosx">abseil (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ Common Libraries</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://abseil.io">https://abseil.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>20200225.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/abseil/xmake.lua">abseil/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install abseil
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("abseil")
+</code></pre>
+<h3 id="assimpmacosx">assimp (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Portable Open-Source library to import various well-known 3D model formats in a uniform manner</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://assimp.org">https://assimp.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/assimp/xmake.lua">assimp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install assimp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("assimp")
+</code></pre>
+<h3 id="autoconfmacosx">autoconf (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakemacosx">automake (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2cmacosx">bin2c (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h3 id="boostmacosx">boost (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Collection of portable C++ source libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.boost.org/">https://www.boost.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.72.0, 1.73.0, 1.70.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/boost/xmake.lua">boost/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install boost
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("boost")
+</code></pre>
+<h3 id="box2dmacosx">box2d (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A 2D Physics Engine for Games</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://box2d.org">https://box2d.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/box2d/xmake.lua">box2d/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install box2d
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("box2d")
+</code></pre>
+<h3 id="bullet3macosx">bullet3 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bullet Physics SDK.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bulletphysics.org">http://bulletphysics.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.05, 2.88</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bullet3/xmake.lua">bullet3/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bullet3
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bullet3")
+</code></pre>
+<h3 id="bzip2macosx">bzip2 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Freely available high-quality data compressor.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://en.wikipedia.org/wiki/Bzip2">https://en.wikipedia.org/wiki/Bzip2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bzip2/xmake.lua">bzip2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bzip2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bzip2")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="cairomacosx">cairo (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Vector graphics library with cross-device output support.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cairographics.org/">https://cairographics.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.16.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cairo/xmake.lua">cairo/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cairo
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cairo")
+</code></pre>
+<h3 id="catch2macosx">catch2 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cjsonmacosx">cjson (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Ultralightweight JSON parser in ANSI C.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/DaveGamble/cJSON">https://github.com/DaveGamble/cJSON</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.7.10</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cjson/xmake.lua">cjson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cjson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cjson")
+</code></pre>
+<h3 id="cmakemacosx">cmake (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="comacosx">co (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Yet another libco and more.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/idealvin/co">https://github.com/idealvin/co</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/co/xmake.lua">co/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install co
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("co")
+</code></pre>
+<h3 id="concurrentqueuemacosx">concurrentqueue (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowmacosx">cpp-taskflow (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptsmacosx">cxxopts (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestmacosx">doctest (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="e">e</h2>
+<h3 id="eigenmacosx">eigen (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ template library for linear algebra</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://eigen.tuxfamily.org/">https://eigen.tuxfamily.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.3.8, 3.3.7</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/e/eigen/xmake.lua">eigen/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install eigen
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("eigen")
+</code></pre>
+<h3 id="expatmacosx">expat (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>XML 1.0 parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://libexpat.github.io">https://libexpat.github.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expat/xmake.lua">expat/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install expat
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("expat")
+</code></pre>
+<h3 id="expresscppmacosx">expresscpp (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast, unopinionated, minimalist web framework for C++ Perfect for building REST APIs.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/expresscpp/expresscpp.git">https://github.com/expresscpp/expresscpp.git</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v0.20.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expresscpp/xmake.lua">expresscpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install expresscpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("expresscpp")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="ffmpegmacosx">ffmpeg (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A collection of libraries to process multimedia content such as audio, video, subtitles and related metadata.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.ffmpeg.org">https://www.ffmpeg.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.0.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/ffmpeg/xmake.lua">ffmpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ffmpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ffmpeg")
+</code></pre>
+<h3 id="fmtmacosx">fmt (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h3 id="fontconfigmacosx">fontconfig (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A library for configuring and customizing font access.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.freedesktop.org/wiki/Software/fontconfig/">https://www.freedesktop.org/wiki/Software/fontconfig/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fontconfig/xmake.lua">fontconfig/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install fontconfig
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fontconfig")
+</code></pre>
+<h3 id="freetypemacosx">freetype (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A freely available software library to render fonts.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.freetype.org">https://www.freetype.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freetype/xmake.lua">freetype/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install freetype
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("freetype")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="gettextmacosx">gettext (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU internationalization (i18n) and localization (l10n) library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/gettext/">https://www.gnu.org/software/gettext/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.19.8-1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gettext/xmake.lua">gettext/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gettext
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gettext")
+</code></pre>
+<h3 id="glewmacosx">glew (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform open-source C/C++ extension loading library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://glew.sourceforge.net/">http://glew.sourceforge.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glew/xmake.lua">glew/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install glew
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glew")
+</code></pre>
+<h3 id="glfwmacosx">glfw (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.glfw.org/">https://www.glfw.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glfw/xmake.lua">glfw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install glfw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glfw")
+</code></pre>
+<h3 id="glibmacosx">glib (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Core application library for C.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developer.gnome.org/glib/">https://developer.gnome.org/glib/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.60.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glib/xmake.lua">glib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install glib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glib")
+</code></pre>
+<h3 id="gomacosx">go (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The Go Programming Language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://golang.org/">https://golang.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/go/xmake.lua">go/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install go
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("go")
+</code></pre>
+<h3 id="gperfmacosx">gperf (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Perfect hash function generator.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/gperf">https://www.gnu.org/software/gperf</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gperf/xmake.lua">gperf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gperf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gperf")
+</code></pre>
+<h3 id="gtestmacosx">gtest (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="icu4cmacosx">icu4c (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C/C++ libraries for Unicode and globalization.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ssl.icu-project.org/">https://ssl.icu-project.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>64.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/icu4c/xmake.lua">icu4c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install icu4c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("icu4c")
+</code></pre>
+<h3 id="imguimacosx">imgui (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ocornut/imgui">https://github.com/ocornut/imgui</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.75, v1.79</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua">imgui/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install imgui
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("imgui")
+</code></pre>
+<h3 id="injamacosx">inja (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmlmacosx">irrXML (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="j">j</h2>
+<h3 id="jsoncmacosx">json-c (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON parser for C</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/json-c/json-c/wiki">https://github.com/json-c/json-c/wiki</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.13.1-20180305</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/j/json-c/xmake.lua">json-c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install json-c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("json-c")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libcurlmacosx">libcurl (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The multiprotocol file transfer library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://curl.haxx.se/">https://curl.haxx.se/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>7.64.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libcurl/xmake.lua">libcurl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libcurl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libcurl")
+</code></pre>
+<h3 id="libevmacosx">libev (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Full-featured high-performance event loop loosely modelled after libevent.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://software.schmorp.de/pkg/libev">http://software.schmorp.de/pkg/libev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.24</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libev/xmake.lua">libev/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libev
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libev")
+</code></pre>
+<h3 id="libffimacosx">libffi (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Portable Foreign Function Interface library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceware.org/libffi/">https://sourceware.org/libffi/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libffi/xmake.lua">libffi/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libffi
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libffi")
+</code></pre>
+<h3 id="libiconvmacosx">libiconv (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Character set conversion library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libiconv">https://www.gnu.org/software/libiconv</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libiconv/xmake.lua">libiconv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libiconv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libiconv")
+</code></pre>
+<h3 id="libjpegmacosx">libjpeg (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="libmillmacosx">libmill (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Go-style concurrency in C</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://libmill.org">http://libmill.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.18, 1.17</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libmill/xmake.lua">libmill/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libmill
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libmill")
+</code></pre>
+<h3 id="libompmacosx">libomp (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>LLVM&#39;s OpenMP runtime library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://openmp.llvm.org/">https://openmp.llvm.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>10.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libomp/xmake.lua">libomp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libomp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libomp")
+</code></pre>
+<h3 id="libpngmacosx">libpng (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The official PNG reference library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libpng.org/pub/png/libpng.html">http://www.libpng.org/pub/png/libpng.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.36, v1.6.35, v1.6.34</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua">libpng/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libpng
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libpng")
+</code></pre>
+<h3 id="libpthreadstubsmacosx">libpthread-stubs (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: pthread-stubs.pc</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpthread-stubs/xmake.lua">libpthread-stubs/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libpthread-stubs
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libpthread-stubs")
+</code></pre>
+<h3 id="librawmacosx">libraw (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>LibRaw is a library for reading RAW files from digital cameras.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libraw.org">http://www.libraw.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.19.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua">libraw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libraw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libraw")
+</code></pre>
+<h3 id="libsdlmacosx">libsdl (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/">https://www.libsdl.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.8</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl/xmake.lua">libsdl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl")
+</code></pre>
+<h3 id="libsdl_gfxmacosx">libsdl_gfx (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer primitives drawing library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/">https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_gfx/xmake.lua">libsdl_gfx/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_gfx
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_gfx")
+</code></pre>
+<h3 id="libsdl_imagemacosx">libsdl_image (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer image loading library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libsdl.org/projects/SDL_image/">http://www.libsdl.org/projects/SDL_image/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_image/xmake.lua">libsdl_image/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_image
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_image")
+</code></pre>
+<h3 id="libsdl_mixermacosx">libsdl_mixer (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer mixer audio library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_mixer/">https://www.libsdl.org/projects/SDL_mixer/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_mixer/xmake.lua">libsdl_mixer/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_mixer
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_mixer")
+</code></pre>
+<h3 id="libsdl_netmacosx">libsdl_net (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer networking library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_net/">https://www.libsdl.org/projects/SDL_net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_net/xmake.lua">libsdl_net/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_net
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_net")
+</code></pre>
+<h3 id="libsdl_ttfmacosx">libsdl_ttf (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer text rendering library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_ttf/">https://www.libsdl.org/projects/SDL_ttf/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_ttf/xmake.lua">libsdl_ttf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_ttf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_ttf")
+</code></pre>
+<h3 id="libtaskmacosx">libtask (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>a Coroutine Library for C and Unix</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://swtch.com/libtask/">https://swtch.com/libtask/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtask/xmake.lua">libtask/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtask
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtask")
+</code></pre>
+<h3 id="libtiffmacosx">libtiff (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>TIFF Library and Utilities.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.simplesystems.org/libtiff/">http://www.simplesystems.org/libtiff/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtiff/xmake.lua">libtiff/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtiff
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtiff")
+</code></pre>
+<h3 id="libtoolmacosx">libtool (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h3 id="libusbmacosx">libusb (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform library to access USB devices.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://libusb.info">https://libusb.info</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.0.23</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libusb/xmake.lua">libusb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libusb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libusb")
+</code></pre>
+<h3 id="libuvmacosx">libuv (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A multi-platform support library with a focus on asynchronous I/O.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://libuv.org/">http://libuv.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua">libuv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libuv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libuv")
+</code></pre>
+<h3 id="libwebsocketsmacosx">libwebsockets (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>canonical libwebsockets.org websocket library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/warmcat/libwebsockets">https://github.com/warmcat/libwebsockets</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libwebsockets/xmake.lua">libwebsockets/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libwebsockets
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libwebsockets")
+</code></pre>
+<h3 id="libx11macosx">libx11 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Core X11 protocol client library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.6.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libx11/xmake.lua">libx11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libx11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libx11")
+</code></pre>
+<h3 id="libxaumacosx">libxau (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: A Sample Authorization Protocol for X</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxau/xmake.lua">libxau/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxau
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxau")
+</code></pre>
+<h3 id="libxcbmacosx">libxcb (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Interface to the X Window System protocol</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.13.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxcb/xmake.lua">libxcb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxcb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxcb")
+</code></pre>
+<h3 id="libxcursormacosx">libxcursor (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Window System Cursor management library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxcursor/xmake.lua">libxcursor/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxcursor
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxcursor")
+</code></pre>
+<h3 id="libxdamagemacosx">libxdamage (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Damage Extension library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxdamage/xmake.lua">libxdamage/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxdamage
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxdamage")
+</code></pre>
+<h3 id="libxdmcpmacosx">libxdmcp (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Display Manager Control Protocol library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxdmcp/xmake.lua">libxdmcp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxdmcp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxdmcp")
+</code></pre>
+<h3 id="libxextmacosx">libxext (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Library for common extensions to the X11 protocol</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxext/xmake.lua">libxext/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxext
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxext")
+</code></pre>
+<h3 id="libxfixesmacosx">libxfixes (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Header files for the XFIXES extension</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.0.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxfixes/xmake.lua">libxfixes/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxfixes
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxfixes")
+</code></pre>
+<h3 id="libximacosx">libxi (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Library for the X Input Extension</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.7.10</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxi/xmake.lua">libxi/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxi
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxi")
+</code></pre>
+<h3 id="libxineramamacosx">libxinerama (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: API for Xinerama extension to X11 Protocol</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxinerama/xmake.lua">libxinerama/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxinerama
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxinerama")
+</code></pre>
+<h3 id="libxmakemacosx">libxmake (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The c/c++ bindings of the xmake core engine</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://xmake.io">https://xmake.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.3.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua">libxmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxmake")
+</code></pre>
+<h3 id="libxml2macosx">libxml2 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The XML C parser and toolkit of Gnome.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://xmlsoft.org/">http://xmlsoft.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua">libxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxml2")
+</code></pre>
+<h3 id="libxrandrmacosx">libxrandr (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Resize, Rotate and Reflection extension library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.5.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxrandr/xmake.lua">libxrandr/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxrandr
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxrandr")
+</code></pre>
+<h3 id="libxrendermacosx">libxrender (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Library for the Render Extension to the X11 protocol</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.9.10</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxrender/xmake.lua">libxrender/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxrender
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxrender")
+</code></pre>
+<h3 id="libxshmfencemacosx">libxshmfence (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Shared memory &#39;SyncFence&#39; synchronization primitive</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxshmfence/xmake.lua">libxshmfence/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxshmfence
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxshmfence")
+</code></pre>
+<h3 id="libxvmacosx">libxv (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Video (Xv) extension</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxv/xmake.lua">libxv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxv")
+</code></pre>
+<h3 id="libxvmcmacosx">libxvmc (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X-Video Motion Compensation API</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.12</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxvmc/xmake.lua">libxvmc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxvmc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxvmc")
+</code></pre>
+<h3 id="libxxf86vmmacosx">libxxf86vm (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: XFree86-VidMode X extension</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxxf86vm/xmake.lua">libxxf86vm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxxf86vm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxxf86vm")
+</code></pre>
+<h3 id="libyamlmacosx">libyaml (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Canonical source repository for LibYAML.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://pyyaml.org/wiki/LibYAML">http://pyyaml.org/wiki/LibYAML</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.2.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libyaml/xmake.lua">libyaml/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libyaml
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libyaml")
+</code></pre>
+<h3 id="liefmacosx">lief (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Library to Instrument Executable Formats.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://lief.quarkslab.com">https://lief.quarkslab.com</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.10.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lief/xmake.lua">lief/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install lief
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("lief")
+</code></pre>
+<h3 id="luamacosx">lua (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A powerful, efficient, lightweight, embeddable scripting language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://lua.org">http://lua.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.3.5, 5.1.5, 5.2.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua">lua/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install lua
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("lua")
+</code></pre>
+<h3 id="luajitmacosx">luajit (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://luajit.org">http://luajit.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0-beta3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua">luajit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install luajit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("luajit")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4macosx">m4 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makemacosx">make (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mbedtlsmacosx">mbedtls (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An SSL library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://tls.mbed.org">https://tls.mbed.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.0, 2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mbedtls/xmake.lua">mbedtls/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install mbedtls
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("mbedtls")
+</code></pre>
+<h3 id="mesonmacosx">meson (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h3 id="monomacosx">mono (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Cross platform, open source .NET development framework</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.mono-project.com/">https://www.mono-project.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.8.0+123</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mono/xmake.lua">mono/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install mono
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("mono")
+</code></pre>
+<h3 id="moonjitmacosx">moonjit (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/moonjit/moonjit">https://github.com/moonjit/moonjit</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua">moonjit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install moonjit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("moonjit")
+</code></pre>
+<h3 id="mysqlmacosx">mysql (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Open source relational database management system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://dev.mysql.com/doc/refman/5.7/en/">https://dev.mysql.com/doc/refman/5.7/en/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.7.29</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mysql/xmake.lua">mysql/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install mysql
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("mysql")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nasmmacosx">nasm (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ncursesmacosx">ncurses (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free software emulation of curses.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/ncurses/">https://www.gnu.org/software/ncurses/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ncurses/xmake.lua">ncurses/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ncurses
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ncurses")
+</code></pre>
+<h3 id="ninjamacosx">ninja (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsonmacosx">nlohmann_json (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="o">o</h2>
+<h3 id="oatppmacosx">oatpp (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modern Web Framework for C++. High performance, simple API, cross platform, zero dependency.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://oatpp.io/">https://oatpp.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/o/oatpp/xmake.lua">oatpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install oatpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("oatpp")
+</code></pre>
+<h3 id="opencvmacosx">opencv (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A open source computer vision library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://opencv.org/">https://opencv.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.4.9, 4.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/o/opencv/xmake.lua">opencv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install opencv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("opencv")
+</code></pre>
+<h3 id="opensslmacosx">openssl (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A robust, commercial-grade, and full-featured toolkit for TLS and SSL.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.openssl.org/">https://www.openssl.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.1, 1.0.2, 1.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/o/openssl/xmake.lua">openssl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install openssl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("openssl")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchmacosx">patch (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pcremacosx">pcre (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Perl Compatible Regular Expressions Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.pcre.org/">https://www.pcre.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.40, 8.41</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre/xmake.lua">pcre/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pcre
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pcre")
+</code></pre>
+<h3 id="pcre2macosx">pcre2 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Perl Compatible Regular Expressions Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.pcre.org/">https://www.pcre.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>10.30, 10.31, 10.23</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre2/xmake.lua">pcre2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pcre2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pcre2")
+</code></pre>
+<h3 id="pixmanmacosx">pixman (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Low-level library for pixel manipulation.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cairographics.org/">https://cairographics.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.38.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pixman/xmake.lua">pixman/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pixman
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pixman")
+</code></pre>
+<h3 id="pkgconfigmacosx">pkg-config (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protobufcmacosx">protobuf-c (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format for c</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/protobuf-c/protobuf-c">https://github.com/protobuf-c/protobuf-c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-c/xmake.lua">protobuf-c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protobuf-c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protobuf-c")
+</code></pre>
+<h3 id="protobufcppmacosx">protobuf-cpp (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format for cpp</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0, 3.12.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-cpp/xmake.lua">protobuf-cpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protobuf-cpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protobuf-cpp")
+</code></pre>
+<h3 id="protocmacosx">protoc (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11macosx">pybind11 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythonmacosx">python (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2macosx">python2 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="r">r</h2>
+<h3 id="raylibmacosx">raylib (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple and easy-to-use library to enjoy videogames programming.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.raylib.com">http://www.raylib.com</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0, 3.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/r/raylib/xmake.lua">raylib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install raylib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("raylib")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="sfmlmacosx">sfml (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple and Fast Multimedia Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.sfml-dev.org">https://www.sfml-dev.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sfml/xmake.lua">sfml/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sfml
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sfml")
+</code></pre>
+<h3 id="skiamacosx">skia (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A complete 2D graphic library for drawing Text, Geometries, and Images.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://skia.org/">https://skia.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>68046c</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/skia/xmake.lua">skia/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install skia
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("skia")
+</code></pre>
+<h3 id="sol2macosx">sol2 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A C++ library binding to Lua.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ThePhD/sol2">https://github.com/ThePhD/sol2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sol2/xmake.lua">sol2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sol2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sol2")
+</code></pre>
+<h3 id="spdlogmacosx">spdlog (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="sqlite3macosx">sqlite3 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The most used database engine in the world</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sqlite.org/">https://sqlite.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.24.0, 3.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sqlite3/xmake.lua">sqlite3/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sqlite3
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sqlite3")
+</code></pre>
+<h3 id="stbmacosx">stb (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxmacosx">tbox (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tinyxml2macosx">tinyxml2 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>simple, small, efficient, C++ XML parser that can be easily integrating into other programs.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.grinninglizard.com/tinyxml2/">http://www.grinninglizard.com/tinyxml2/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua">tinyxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tinyxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tinyxml2")
+</code></pre>
+<h3 id="tmxparsermacosx">tmxparser (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="u">u</h2>
+<h3 id="unqlitemacosx">unqlite (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An Embedded NoSQL, Transactional Database Engine.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://unqlite.org">https://unqlite.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/u/unqlite/xmake.lua">unqlite/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install unqlite
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("unqlite")
+</code></pre>
+<h3 id="utillinuxmacosx">util-linux (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Collection of Linux utilities.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/karelzak/util-linux">https://github.com/karelzak/util-linux</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.32.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/u/util-linux/xmake.lua">util-linux/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install util-linux
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("util-linux")
+</code></pre>
+<h3 id="utilmacrosmacosx">util-macros (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Set of autoconf macros used to build other xorg packages</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.19.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/u/util-macros/xmake.lua">util-macros/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install util-macros
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("util-macros")
+</code></pre>
+<h2 id="x">x</h2>
+<h3 id="x264macosx">x264 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.videolan.org/developers/x264.html">https://www.videolan.org/developers/x264.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2018.09.25</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/x264/xmake.lua">x264/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install x264
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("x264")
+</code></pre>
+<h3 id="x265macosx">x265 (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free software library and application for encoding video streams into the H.265/MPEG-H HEVC compression format.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://x265.org">http://x265.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/x265/xmake.lua">x265/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install x265
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("x265")
+</code></pre>
+<h3 id="xcbprotomacosx">xcb-proto (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: XML-XCB protocol descriptions for libxcb code generation</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.13</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xcb-proto/xmake.lua">xcb-proto/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install xcb-proto
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xcb-proto")
+</code></pre>
+<h3 id="xorgprotomacosx">xorgproto (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: Protocol Headers</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2019.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xorgproto/xmake.lua">xorgproto/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install xorgproto
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xorgproto")
+</code></pre>
+<h3 id="xtransmacosx">xtrans (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>X.Org: X Network Transport layer shared code</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.x.org/">https://www.x.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xtrans/xmake.lua">xtrans/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install xtrans
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xtrans")
+</code></pre>
+<h3 id="xzmacosx">xz (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>General-purpose data compression with high compression ratio.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://tukaani.org/xz/">https://tukaani.org/xz/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.2.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xz/xmake.lua">xz/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install xz
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xz")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmmacosx">yasm (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+<h2 id="z">z</h2>
+<h3 id="zeromqmacosx">zeromq (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High-performance, asynchronous messaging library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://zeromq.org/">https://zeromq.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.3.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zeromq/xmake.lua">zeromq/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install zeromq
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zeromq")
+</code></pre>
+<h3 id="zlibmacosx">zlib (macosx)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Massively Spiffy Yet Delicately Unobtrusive Compression Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.zlib.net">http://www.zlib.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.10, 1.2.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua">zlib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install zlib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zlib")
+</code></pre>
+</article>
+</body>
+</html>

+ 1532 - 0
mirror/packages/mingw.html

@@ -0,0 +1,1532 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/mingw">https://xrepo.xmake.io/#/packages/mingw</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="autoconfmingw">autoconf (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakemingw">automake (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2cmingw">bin2c (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h3 id="box2dmingw">box2d (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A 2D Physics Engine for Games</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://box2d.org">https://box2d.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/box2d/xmake.lua">box2d/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] box2d
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("box2d")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="catch2mingw">catch2 (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cmakemingw">cmake (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="concurrentqueuemingw">concurrentqueue (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowmingw">cpp-taskflow (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptsmingw">cxxopts (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestmingw">doctest (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="fmtmingw">fmt (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="glewmingw">glew (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform open-source C/C++ extension loading library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://glew.sourceforge.net/">http://glew.sourceforge.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glew/xmake.lua">glew/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] glew
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glew")
+</code></pre>
+<h3 id="glfwmingw">glfw (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.glfw.org/">https://www.glfw.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glfw/xmake.lua">glfw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] glfw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glfw")
+</code></pre>
+<h3 id="gtestmingw">gtest (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="imguimingw">imgui (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ocornut/imgui">https://github.com/ocornut/imgui</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.75, v1.79</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua">imgui/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] imgui
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("imgui")
+</code></pre>
+<h3 id="injamingw">inja (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmlmingw">irrXML (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libjpegmingw">libjpeg (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="librawmingw">libraw (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>LibRaw is a library for reading RAW files from digital cameras.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libraw.org">http://www.libraw.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.19.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua">libraw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libraw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libraw")
+</code></pre>
+<h3 id="libsdlmingw">libsdl (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/">https://www.libsdl.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.8</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl/xmake.lua">libsdl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libsdl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl")
+</code></pre>
+<h3 id="libsdl_imagemingw">libsdl_image (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer image loading library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libsdl.org/projects/SDL_image/">http://www.libsdl.org/projects/SDL_image/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_image/xmake.lua">libsdl_image/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libsdl_image
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_image")
+</code></pre>
+<h3 id="libsdl_mixermingw">libsdl_mixer (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer mixer audio library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_mixer/">https://www.libsdl.org/projects/SDL_mixer/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_mixer/xmake.lua">libsdl_mixer/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libsdl_mixer
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_mixer")
+</code></pre>
+<h3 id="libsdl_netmingw">libsdl_net (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer networking library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_net/">https://www.libsdl.org/projects/SDL_net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_net/xmake.lua">libsdl_net/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libsdl_net
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_net")
+</code></pre>
+<h3 id="libsdl_ttfmingw">libsdl_ttf (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer text rendering library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_ttf/">https://www.libsdl.org/projects/SDL_ttf/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_ttf/xmake.lua">libsdl_ttf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libsdl_ttf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_ttf")
+</code></pre>
+<h3 id="libtoolmingw">libtool (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h3 id="libuvmingw">libuv (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A multi-platform support library with a focus on asynchronous I/O.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://libuv.org/">http://libuv.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua">libuv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] libuv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libuv")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4mingw">m4 (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makemingw">make (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mesonmingw">meson (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nasmmingw">nasm (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ninjamingw">ninja (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsonmingw">nlohmann_json (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchmingw">patch (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pcremingw">pcre (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Perl Compatible Regular Expressions Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.pcre.org/">https://www.pcre.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.40, 8.41</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre/xmake.lua">pcre/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] pcre
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pcre")
+</code></pre>
+<h3 id="pcre2mingw">pcre2 (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Perl Compatible Regular Expressions Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.pcre.org/">https://www.pcre.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>10.30, 10.31, 10.23</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre2/xmake.lua">pcre2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] pcre2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pcre2")
+</code></pre>
+<h3 id="pkgconfigmingw">pkg-config (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protocmingw">protoc (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11mingw">pybind11 (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythonmingw">python (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2mingw">python2 (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="sfmlmingw">sfml (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple and Fast Multimedia Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.sfml-dev.org">https://www.sfml-dev.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sfml/xmake.lua">sfml/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] sfml
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sfml")
+</code></pre>
+<h3 id="spdlogmingw">spdlog (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="stbmingw">stb (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxmingw">tbox (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tinyxml2mingw">tinyxml2 (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>simple, small, efficient, C++ XML parser that can be easily integrating into other programs.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.grinninglizard.com/tinyxml2/">http://www.grinninglizard.com/tinyxml2/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua">tinyxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] tinyxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tinyxml2")
+</code></pre>
+<h3 id="tmxparsermingw">tmxparser (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="x">x</h2>
+<h3 id="xzmingw">xz (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>General-purpose data compression with high compression ratio.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://tukaani.org/xz/">https://tukaani.org/xz/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.2.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xz/xmake.lua">xz/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] xz
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("xz")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmmingw">yasm (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+<h2 id="z">z</h2>
+<h3 id="zlibmingw">zlib (mingw)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Massively Spiffy Yet Delicately Unobtrusive Compression Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.zlib.net">http://www.zlib.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.10, 1.2.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua">zlib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install -p mingw [--mingw=/xxx] zlib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zlib")
+</code></pre>
+</article>
+</body>
+</html>

+ 1066 - 0
mirror/packages/msys.html

@@ -0,0 +1,1066 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/msys">https://xrepo.xmake.io/#/packages/msys</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="autoconfmsys">autoconf (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakemsys">automake (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2cmsys">bin2c (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="catch2msys">catch2 (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cmakemsys">cmake (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="concurrentqueuemsys">concurrentqueue (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowmsys">cpp-taskflow (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptsmsys">cxxopts (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestmsys">doctest (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="fmtmsys">fmt (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="gtestmsys">gtest (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="injamsys">inja (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmlmsys">irrXML (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libjpegmsys">libjpeg (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="libtoolmsys">libtool (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h3 id="libxmakemsys">libxmake (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The c/c++ bindings of the xmake core engine</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://xmake.io">https://xmake.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.3.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua">libxmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxmake")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4msys">m4 (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makemsys">make (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mesonmsys">meson (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nasmmsys">nasm (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ninjamsys">ninja (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsonmsys">nlohmann_json (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchmsys">patch (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pkgconfigmsys">pkg-config (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protocmsys">protoc (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11msys">pybind11 (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythonmsys">python (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2msys">python2 (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="spdlogmsys">spdlog (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="stbmsys">stb (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxmsys">tbox (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tmxparsermsys">tmxparser (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmmsys">yasm (msys)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+</article>
+</body>
+</html>

+ 2492 - 0
mirror/packages/windows.html

@@ -0,0 +1,2492 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/packages/windows">https://xrepo.xmake.io/#/packages/windows</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="a">a</h2>
+<h3 id="abseilwindows">abseil (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ Common Libraries</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://abseil.io">https://abseil.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>20200225.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/abseil/xmake.lua">abseil/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install abseil
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("abseil")
+</code></pre>
+<h3 id="assimpwindows">assimp (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Portable Open-Source library to import various well-known 3D model formats in a uniform manner</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://assimp.org">https://assimp.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/assimp/xmake.lua">assimp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install assimp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("assimp")
+</code></pre>
+<h3 id="autoconfwindows">autoconf (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/autoconf/autoconf.html">https://www.gnu.org/software/autoconf/autoconf.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.69, 2.68</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua">autoconf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install autoconf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("autoconf")
+</code></pre>
+<h3 id="automakewindows">automake (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/automake/">https://www.gnu.org/software/automake/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.5, 1.16.1, 1.9.6, 1.15.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua">automake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install automake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("automake")
+</code></pre>
+<h2 id="b">b</h2>
+<h3 id="bin2cwindows">bin2c (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple utility for converting a binary file to a c application</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gwilymk/bin2c">https://github.com/gwilymk/bin2c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua">bin2c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bin2c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bin2c")
+</code></pre>
+<h3 id="boostwindows">boost (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Collection of portable C++ source libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.boost.org/">https://www.boost.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.72.0, 1.73.0, 1.70.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/boost/xmake.lua">boost/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install boost
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("boost")
+</code></pre>
+<h3 id="box2dwindows">box2d (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A 2D Physics Engine for Games</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://box2d.org">https://box2d.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/box2d/xmake.lua">box2d/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install box2d
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("box2d")
+</code></pre>
+<h3 id="bullet3windows">bullet3 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bullet Physics SDK.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bulletphysics.org">http://bulletphysics.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.05, 2.88</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bullet3/xmake.lua">bullet3/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bullet3
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bullet3")
+</code></pre>
+<h3 id="bzip2windows">bzip2 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Freely available high-quality data compressor.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://en.wikipedia.org/wiki/Bzip2">https://en.wikipedia.org/wiki/Bzip2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bzip2/xmake.lua">bzip2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install bzip2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("bzip2")
+</code></pre>
+<h2 id="c">c</h2>
+<h3 id="cairowindows">cairo (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Vector graphics library with cross-device output support.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cairographics.org/">https://cairographics.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.16.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cairo/xmake.lua">cairo/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cairo
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cairo")
+</code></pre>
+<h3 id="catch2windows">catch2 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). </em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/catchorg/Catch2">https://github.com/catchorg/Catch2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua">catch2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install catch2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("catch2")
+</code></pre>
+<h3 id="cmakewindows">cmake (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform family of tool designed to build, test and package software</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cmake.org">https://cmake.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.11.4, 3.15.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua">cmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cmake")
+</code></pre>
+<h3 id="cowindows">co (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Yet another libco and more.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/idealvin/co">https://github.com/idealvin/co</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/co/xmake.lua">co/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install co
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("co")
+</code></pre>
+<h3 id="concurrentqueuewindows">concurrentqueue (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An industrial-strength lock-free queue for C++.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/cameron314/concurrentqueue">https://github.com/cameron314/concurrentqueue</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua">concurrentqueue/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install concurrentqueue
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("concurrentqueue")
+</code></pre>
+<h3 id="cpptaskflowwindows">cpp-taskflow (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cpp-taskflow.github.io/">https://cpp-taskflow.github.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua">cpp-taskflow/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cpp-taskflow
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cpp-taskflow")
+</code></pre>
+<h3 id="cxxoptswindows">cxxopts (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Lightweight C++ command line option parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/jarro2783/cxxopts">https://github.com/jarro2783/cxxopts</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua">cxxopts/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install cxxopts
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("cxxopts")
+</code></pre>
+<h2 id="d">d</h2>
+<h3 id="doctestwindows">doctest (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://bit.ly/doctest-docs">http://bit.ly/doctest-docs</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.3.6, 2.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua">doctest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install doctest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("doctest")
+</code></pre>
+<h2 id="e">e</h2>
+<h3 id="eigenwindows">eigen (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++ template library for linear algebra</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://eigen.tuxfamily.org/">https://eigen.tuxfamily.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.3.8, 3.3.7</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/e/eigen/xmake.lua">eigen/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install eigen
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("eigen")
+</code></pre>
+<h3 id="expatwindows">expat (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>XML 1.0 parser</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://libexpat.github.io">https://libexpat.github.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expat/xmake.lua">expat/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install expat
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("expat")
+</code></pre>
+<h2 id="f">f</h2>
+<h3 id="fmtwindows">fmt (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://fmt.dev">https://fmt.dev</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>6.2.0, 5.3.0, 6.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua">fmt/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install fmt
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("fmt")
+</code></pre>
+<h3 id="freeglutwindows">freeglut (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A free-software/open-source alternative to the OpenGL Utility Toolkit (GLUT) library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://freeglut.sourceforge.net">http://freeglut.sourceforge.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freeglut/xmake.lua">freeglut/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install freeglut
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("freeglut")
+</code></pre>
+<h3 id="freetypewindows">freetype (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A freely available software library to render fonts.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.freetype.org">https://www.freetype.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freetype/xmake.lua">freetype/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install freetype
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("freetype")
+</code></pre>
+<h2 id="g">g</h2>
+<h3 id="glewwindows">glew (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A cross-platform open-source C/C++ extension loading library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://glew.sourceforge.net/">http://glew.sourceforge.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glew/xmake.lua">glew/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install glew
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glew")
+</code></pre>
+<h3 id="glfwwindows">glfw (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.glfw.org/">https://www.glfw.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glfw/xmake.lua">glfw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install glfw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("glfw")
+</code></pre>
+<h3 id="gowindows">go (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The Go Programming Language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://golang.org/">https://golang.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/go/xmake.lua">go/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install go
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("go")
+</code></pre>
+<h3 id="gtestwindows">gtest (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google Testing and Mocking Framework.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/google/googletest">https://github.com/google/googletest</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.8.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua">gtest/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install gtest
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("gtest")
+</code></pre>
+<h2 id="i">i</h2>
+<h3 id="imguiwindows">imgui (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ocornut/imgui">https://github.com/ocornut/imgui</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.75, v1.79</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua">imgui/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install imgui
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("imgui")
+</code></pre>
+<h3 id="injawindows">inja (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Template Engine for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://pantor.github.io/inja/">https://pantor.github.io/inja/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua">inja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install inja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("inja")
+</code></pre>
+<h3 id="irrxmlwindows">irrXML (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High speed and easy-to-use XML Parser for C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sourceforge.net/projects/irrlicht/">https://sourceforge.net/projects/irrlicht/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua">irrXML/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install irrXML
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("irrXML")
+</code></pre>
+<h2 id="l">l</h2>
+<h3 id="libcurlwindows">libcurl (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The multiprotocol file transfer library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://curl.haxx.se/">https://curl.haxx.se/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>7.64.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libcurl/xmake.lua">libcurl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libcurl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libcurl")
+</code></pre>
+<h3 id="libjpegwindows">libjpeg (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A widely used C library for reading and writing JPEG image files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://ijg.org/">http://ijg.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v9c, v9b</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua">libjpeg/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libjpeg
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libjpeg")
+</code></pre>
+<h3 id="libpngwindows">libpng (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The official PNG reference library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libpng.org/pub/png/libpng.html">http://www.libpng.org/pub/png/libpng.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.36, v1.6.35, v1.6.34</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua">libpng/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libpng
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libpng")
+</code></pre>
+<h3 id="librawwindows">libraw (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>LibRaw is a library for reading RAW files from digital cameras.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libraw.org">http://www.libraw.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.19.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua">libraw/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libraw
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libraw")
+</code></pre>
+<h3 id="libsdlwindows">libsdl (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/">https://www.libsdl.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.8</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl/xmake.lua">libsdl/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl")
+</code></pre>
+<h3 id="libsdl_gfxwindows">libsdl_gfx (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer primitives drawing library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/">https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_gfx/xmake.lua">libsdl_gfx/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_gfx
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_gfx")
+</code></pre>
+<h3 id="libsdl_imagewindows">libsdl_image (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer image loading library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.libsdl.org/projects/SDL_image/">http://www.libsdl.org/projects/SDL_image/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.5</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_image/xmake.lua">libsdl_image/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_image
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_image")
+</code></pre>
+<h3 id="libsdl_mixerwindows">libsdl_mixer (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer mixer audio library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_mixer/">https://www.libsdl.org/projects/SDL_mixer/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_mixer/xmake.lua">libsdl_mixer/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_mixer
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_mixer")
+</code></pre>
+<h3 id="libsdl_netwindows">libsdl_net (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer networking library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_net/">https://www.libsdl.org/projects/SDL_net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_net/xmake.lua">libsdl_net/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_net
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_net")
+</code></pre>
+<h3 id="libsdl_ttfwindows">libsdl_ttf (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple DirectMedia Layer text rendering library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.libsdl.org/projects/SDL_ttf/">https://www.libsdl.org/projects/SDL_ttf/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.0.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_ttf/xmake.lua">libsdl_ttf/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libsdl_ttf
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libsdl_ttf")
+</code></pre>
+<h3 id="libtiffwindows">libtiff (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>TIFF Library and Utilities.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.simplesystems.org/libtiff/">http://www.simplesystems.org/libtiff/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.1.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtiff/xmake.lua">libtiff/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtiff
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtiff")
+</code></pre>
+<h3 id="libtoolwindows">libtool (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A generic library support script.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/libtool/">https://www.gnu.org/software/libtool/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.4.5, 2.4.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua">libtool/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libtool
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libtool")
+</code></pre>
+<h3 id="libuvwindows">libuv (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A multi-platform support library with a focus on asynchronous I/O.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://libuv.org/">http://libuv.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua">libuv/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libuv
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libuv")
+</code></pre>
+<h3 id="libwebsocketswindows">libwebsockets (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>canonical libwebsockets.org websocket library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/warmcat/libwebsockets">https://github.com/warmcat/libwebsockets</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libwebsockets/xmake.lua">libwebsockets/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libwebsockets
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libwebsockets")
+</code></pre>
+<h3 id="libxmakewindows">libxmake (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The c/c++ bindings of the xmake core engine</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://xmake.io">https://xmake.io</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v2.3.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua">libxmake/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxmake
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxmake")
+</code></pre>
+<h3 id="libxml2windows">libxml2 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The XML C parser and toolkit of Gnome.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://xmlsoft.org/">http://xmlsoft.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.9.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua">libxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install libxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("libxml2")
+</code></pre>
+<h3 id="liefwindows">lief (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Library to Instrument Executable Formats.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://lief.quarkslab.com">https://lief.quarkslab.com</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.10.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lief/xmake.lua">lief/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install lief
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("lief")
+</code></pre>
+<h3 id="luawindows">lua (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A powerful, efficient, lightweight, embeddable scripting language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://lua.org">http://lua.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>5.3.5, 5.1.5, 5.2.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua">lua/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install lua
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("lua")
+</code></pre>
+<h3 id="luajitwindows">luajit (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://luajit.org">http://luajit.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.1.0-beta3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua">luajit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install luajit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("luajit")
+</code></pre>
+<h2 id="m">m</h2>
+<h3 id="m4windows">m4 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Macro processing language</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/m4">https://www.gnu.org/software/m4</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.4.18</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua">m4/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install m4
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("m4")
+</code></pre>
+<h3 id="makewindows">make (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU make tool.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.gnu.org/software/make/">https://www.gnu.org/software/make/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua">make/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install make
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("make")
+</code></pre>
+<h3 id="mesonwindows">meson (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast and user friendly build system.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://mesonbuild.com/">https://mesonbuild.com/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.50.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua">meson/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install meson
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("meson")
+</code></pre>
+<h3 id="moonjitwindows">moonjit (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Just-In-Time Compiler (JIT) for the Lua programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/moonjit/moonjit">https://github.com/moonjit/moonjit</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua">moonjit/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install moonjit
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("moonjit")
+</code></pre>
+<h2 id="n">n</h2>
+<h3 id="nanawindows">nana (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A modern C++ GUI library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://nanapro.org">http://nanapro.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.7.2, 1.7.4, 1.6.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nana/xmake.lua">nana/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nana
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nana")
+</code></pre>
+<h3 id="nasmwindows">nasm (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Netwide Assembler (NASM) is an 80x86 assembler.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.nasm.us/">https://www.nasm.us/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.13.03</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua">nasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nasm")
+</code></pre>
+<h3 id="ninjawindows">ninja (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Small build system for use with gyp or CMake.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://ninja-build.org/">https://ninja-build.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.9.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua">ninja/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install ninja
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("ninja")
+</code></pre>
+<h3 id="nlohmann_jsonwindows">nlohmann_json (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>JSON for Modern C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://nlohmann.github.io/json/">https://nlohmann.github.io/json/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.9.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua">nlohmann_json/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install nlohmann_json
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("nlohmann_json")
+</code></pre>
+<h2 id="o">o</h2>
+<h3 id="oatppwindows">oatpp (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modern Web Framework for C++. High performance, simple API, cross platform, zero dependency.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://oatpp.io/">https://oatpp.io/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/o/oatpp/xmake.lua">oatpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install oatpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("oatpp")
+</code></pre>
+<h2 id="p">p</h2>
+<h3 id="patchwindows">patch (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>GNU patch, which applies diff files to original files.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.gnu.org/software/patch/patch.html">http://www.gnu.org/software/patch/patch.html</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.6</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua">patch/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install patch
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("patch")
+</code></pre>
+<h3 id="pcrewindows">pcre (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Perl Compatible Regular Expressions Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.pcre.org/">https://www.pcre.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.40, 8.41</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre/xmake.lua">pcre/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pcre
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pcre")
+</code></pre>
+<h3 id="pcre2windows">pcre2 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Perl Compatible Regular Expressions Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.pcre.org/">https://www.pcre.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>10.30, 10.31, 10.23</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre2/xmake.lua">pcre2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pcre2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pcre2")
+</code></pre>
+<h3 id="pixmanwindows">pixman (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Low-level library for pixel manipulation.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://cairographics.org/">https://cairographics.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.38.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pixman/xmake.lua">pixman/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pixman
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pixman")
+</code></pre>
+<h3 id="pkgconfigwindows">pkg-config (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A helper tool used when compiling applications and libraries.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://freedesktop.org/wiki/Software/pkg-config/">https://freedesktop.org/wiki/Software/pkg-config/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.29.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua">pkg-config/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pkg-config
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pkg-config")
+</code></pre>
+<h3 id="protobufcwindows">protobuf-c (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format for c</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/protobuf-c/protobuf-c">https://github.com/protobuf-c/protobuf-c</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-c/xmake.lua">protobuf-c/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protobuf-c
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protobuf-c")
+</code></pre>
+<h3 id="protobufcppwindows">protobuf-cpp (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format for cpp</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0, 3.12.3</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-cpp/xmake.lua">protobuf-cpp/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protobuf-cpp
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protobuf-cpp")
+</code></pre>
+<h3 id="protocwindows">protoc (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Google&#39;s data interchange format compiler</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://developers.google.com/protocol-buffers/">https://developers.google.com/protocol-buffers/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.8.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua">protoc/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install protoc
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("protoc")
+</code></pre>
+<h3 id="pybind11windows">pybind11 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Seamless operability between C++11 and Python.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/pybind/pybind11">https://github.com/pybind/pybind11</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua">pybind11/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install pybind11
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("pybind11")
+</code></pre>
+<h3 id="pythonwindows">python (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.7.0, 2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua">python/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python")
+</code></pre>
+<h3 id="python2windows">python2 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The python programming language.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.python.org/">https://www.python.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.7.15</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua">python2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install python2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("python2")
+</code></pre>
+<h2 id="r">r</h2>
+<h3 id="raylibwindows">raylib (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A simple and easy-to-use library to enjoy videogames programming.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.raylib.com">http://www.raylib.com</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.5.0, 3.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/r/raylib/xmake.lua">raylib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install raylib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("raylib")
+</code></pre>
+<h2 id="s">s</h2>
+<h3 id="sfmlwindows">sfml (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Simple and Fast Multimedia Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://www.sfml-dev.org">https://www.sfml-dev.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td></td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sfml/xmake.lua">sfml/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sfml
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sfml")
+</code></pre>
+<h3 id="skiawindows">skia (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A complete 2D graphic library for drawing Text, Geometries, and Images.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://skia.org/">https://skia.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>68046c</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/skia/xmake.lua">skia/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install skia
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("skia")
+</code></pre>
+<h3 id="sol2windows">sol2 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A C++ library binding to Lua.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/ThePhD/sol2">https://github.com/ThePhD/sol2</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v3.2.1</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sol2/xmake.lua">sol2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sol2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sol2")
+</code></pre>
+<h3 id="spdlogwindows">spdlog (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Fast C++ logging library.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/gabime/spdlog">https://github.com/gabime/spdlog</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.1, 1.5.0, 1.8.0, 1.4.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua">spdlog/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install spdlog
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("spdlog")
+</code></pre>
+<h3 id="sqlite3windows">sqlite3 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>The most used database engine in the world</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://sqlite.org/">https://sqlite.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>3.24.0, 3.23.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sqlite3/xmake.lua">sqlite3/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install sqlite3
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("sqlite3")
+</code></pre>
+<h3 id="stbwindows">stb (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>single-file public domain (or MIT licensed) libraries for C/C++</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/nothings/stb">https://github.com/nothings/stb</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua">stb/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install stb
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("stb")
+</code></pre>
+<h2 id="t">t</h2>
+<h3 id="tboxwindows">tbox (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A glib-like multi-platform c library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.tboox.org">http://www.tboox.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>v1.6.2, v1.6.5, v1.6.3, v1.6.4</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua">tbox/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tbox
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tbox")
+</code></pre>
+<h3 id="tinyxml2windows">tinyxml2 (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>simple, small, efficient, C++ XML parser that can be easily integrating into other programs.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.grinninglizard.com/tinyxml2/">http://www.grinninglizard.com/tinyxml2/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>8.0.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua">tinyxml2/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tinyxml2
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tinyxml2")
+</code></pre>
+<h3 id="tmxparserwindows">tmxparser (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>C++11 library for parsing the maps generated by Tiled Map Editor</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://github.com/sainteos/tmxparser">https://github.com/sainteos/tmxparser</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>2.2.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua">tmxparser/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install tmxparser
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("tmxparser")
+</code></pre>
+<h2 id="u">u</h2>
+<h3 id="unqlitewindows">unqlite (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>An Embedded NoSQL, Transactional Database Engine.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://unqlite.org">https://unqlite.org</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.1.9</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/u/unqlite/xmake.lua">unqlite/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install unqlite
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("unqlite")
+</code></pre>
+<h2 id="y">y</h2>
+<h3 id="yasmwindows">yasm (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>Modular BSD reimplementation of NASM.</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://yasm.tortall.net/">https://yasm.tortall.net/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.3.0</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua">yasm/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install yasm
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("yasm")
+</code></pre>
+<h2 id="z">z</h2>
+<h3 id="zeromqwindows">zeromq (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>High-performance, asynchronous messaging library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="https://zeromq.org/">https://zeromq.org/</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>4.3.2</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zeromq/xmake.lua">zeromq/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install zeromq
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zeromq")
+</code></pre>
+<h3 id="zlibwindows">zlib (windows)</h3>
+<table>
+<thead>
+<tr>
+<th>Description</th>
+<th><em>A Massively Spiffy Yet Delicately Unobtrusive Compression Library</em></th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td>Homepage</td>
+<td><a href="http://www.zlib.net">http://www.zlib.net</a></td>
+</tr>
+<tr>
+<td>Versions</td>
+<td>1.2.10, 1.2.11</td>
+</tr>
+<tr>
+<td>Github</td>
+<td><a href="https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua">zlib/xmake.lua</a></td>
+</tr>
+</tbody>
+</table>
+<h5 id="installcommand">Install command</h5>
+<pre><code class="lang-console">xrepo install zlib
+</code></pre>
+<h5 id="integrationintheprojectxmakelua">Integration in the project (xmake.lua)</h5>
+<pre><code class="lang-lua">add_requires("zlib")
+</code></pre>
+</article>
+</body>
+</html>

+ 266 - 0
mirror/zh-cn/getting_started.html

@@ -0,0 +1,266 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <title>xrepo</title>
+  <link rel="icon" href="/assets/img/favicon.ico">
+  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
+  <meta name="description" content="Description">
+  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+  <link href="//cdn.jsdelivr.net/npm/[email protected]/github-markdown.min.css" rel="stylesheet">
+  <style>
+	.markdown-body {
+		box-sizing: border-box;
+		min-width: 200px;
+		max-width: 980px;
+		margin: 0 auto;
+		padding: 45px;
+	}
+
+	@media (max-width: 767px) {
+		.markdown-body {
+			padding: 15px;
+		}
+	}
+  </style>
+</head>
+<body>
+<article class="markdown-body">
+<h4>This is a mirror page, please see the original page: </h4><a href="https://xrepo.xmake.io/#/zh-cn/getting_started">https://xrepo.xmake.io/#/zh-cn/getting_started</a>
+</br>
+    <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CE7I52QU&placement=xmakeio" id="_carbonads_js"></script>
+<style>
+#carbonads {
+  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
+  Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif;
+}
+
+#carbonads {
+  display: flex;
+  max-width: 330px;
+  background-color: hsl(0, 0%, 98%);
+  box-shadow: 0 1px 4px 1px hsla(0, 0%, 0%, .1);
+}
+
+#carbonads a {
+  color: inherit;
+  text-decoration: none;
+}
+
+#carbonads a:hover {
+  color: inherit;
+}
+
+#carbonads span {
+  position: relative;
+  display: block;
+  overflow: hidden;
+}
+
+#carbonads .carbon-wrap {
+  display: flex;
+}
+
+.carbon-img {
+  display: block;
+  margin: 0;
+  line-height: 1;
+}
+
+.carbon-img img {
+  display: block;
+}
+
+.carbon-text {
+  font-size: 13px;
+  padding: 10px;
+  line-height: 1.5;
+  text-align: left;
+}
+
+.carbon-poweredby {
+  display: block;
+  padding: 8px 10px;
+  background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: .5px;
+  font-weight: 600;
+  font-size: 9px;
+  line-height: 1;
+}
+</style>
+    <h2 id="">简介</h2>
+<p>xrepo 是一个基于 <a href="https://github.com/xmake-io/xmake">Xmake</a> 的跨平台 C/C++ 包管理器。</p>
+<p>它基于 xmake 提供的运行时,但却是一个完整独立的包管理程序,相比 vcpkg/homebrew 此类包管理器,xrepo 能够同时提供更多平台和架构的 C/C++ 包。</p>
+<p>并且还支持多版本语义选择,另外它还是一个去中心化的分布式仓库,不仅仅提供了官方的 <a href="https://github.com/xmake-io/xmake-repo">xmake-repo</a> 仓库,还支持用户自建多个私有仓库。</p>
+<p>同时,xrepo 也支持从 vcpkg/homebrew/conan 等第三方包管理器中安装包,并提供统一一致的库链接信息,方便与第三方项目的集成对接。</p>
+<p>如果你想要了解更多,请参考:<a href="https://xmake.io/#/zh-cn/getting_started">在线文档</a>, <a href="https://github.com/xmake-io/xrepo">Github</a> 以及 <a href="https://gitee.com/tboox/xrepo">Gitee</a></p>
+<h2 id="">安装</h2>
+<p>我们只需要安装上 xmake 就可以使用 xrepo 命令,关于 xmake 的安装,我们可以看下:<a href="https://xmake.io/#/zh-cn/guide/installation">xmake 安装文档</a>。</p>
+<h2 id="">支持平台</h2>
+<ul>
+<li>Windows (x86, x64)</li>
+<li>macOS (i386, x86_64, arm64)</li>
+<li>Linux (i386, x86_64, cross-toolchains ..)</li>
+<li>*BSD (i386, x86_64)</li>
+<li>Android (x86, x86_64, armeabi, armeabi-v7a, arm64-v8a)</li>
+<li>iOS (armv7, armv7s, arm64, i386, x86_64)</li>
+<li>MSYS (i386, x86_64)</li>
+<li>MinGW (i386, x86_64, arm, arm64)</li>
+<li>Cross Toolchains</li>
+</ul>
+<h2 id="">分布式仓库支持</h2>
+<p>除了可以直接从官方仓库:<a href="https://github.com/xmake-io/xmake-repo">xmake-repo</a> 检索安装包之外,<br>我们还可以添加任意多个自建的仓库,甚至可以完全隔离外网,仅仅在公司内部网络维护私有包的安装集成。</p>
+<p>只需要通过下面的命令,添加上自己的仓库地址:</p>
+<pre><code class="lang-console">$ xrepo add-repo myrepo https://github.com/mygroup/myrepo
+</code></pre>
+<h2 id="xmake">与 xmake 的工程无缝集成</h2>
+<pre><code class="lang-lua">add_requires("tbox >1.6.1", "libuv master", "vcpkg::ffmpeg", "brew::pcre2/libpcre2-8")
+add_requires("conan::openssl/1.1.1g", {alias = "openssl", optional = true, debug = true})
+target("test")
+    set_kind("binary")
+    add_files("src/*.c")
+    add_packages("tbox", "libuv", "vcpkg::ffmpeg", "brew::pcre2/libpcre2-8", "openssl")
+</code></pre>
+<p>下面是与 xmake 集成的整体架构和编译流程。</p>
+<p><img src="https://xmake.io/assets/img/index/package_arch.png" width="650px" /></p>
+<h2 id="">快速上手</h2>
+<h3 id="">安装包</h3>
+<h4 id="">基本使用</h4>
+<pre><code class="lang-console">$ xrepo install zlib tbox
+</code></pre>
+<h4 id="">安装指定版本包</h4>
+<p>完整支持 Semantic Versioning (语义版本)。</p>
+<pre><code class="lang-console">$ xrepo install "zlib 1.2.x"
+$ xrepo install "zlib >=1.2.0"
+</code></pre>
+<h4 id="">安装指定平台包</h4>
+<pre><code class="lang-console">$ xrepo install -p iphoneos -a arm64 zlib
+$ xrepo install -p android [--ndk=/xxx] zlib
+$ xrepo install -p mingw [--mingw=/xxx] zlib
+$ xrepo install -p cross --sdk=/xxx/arm-linux-musleabi-cross zlib
+</code></pre>
+<h4 id="">安装调试版本包</h4>
+<pre><code class="lang-console">$ xrepo install -m debug zlib
+</code></pre>
+<h4 id="">安装动态库版本包</h4>
+<pre><code class="lang-console">$ xrepo install -k shared zlib
+</code></pre>
+<h4 id="">安装指定配置包</h4>
+<pre><code class="lang-console">$ xrepo install -f "vs_runtime=MD" zlib
+$ xrepo install -f "regex=true,thread=true" boost
+</code></pre>
+<h4 id="">安装第三方包管理器的包</h4>
+<pre><code class="lang-console">$ xrepo install brew::zlib
+$ xrepo install vcpkg::zlib
+$ xrepo install conan::zlib/1.2.11
+</code></pre>
+<h3 id="">查找包的库使用信息</h3>
+<pre><code class="lang-console">$ xrepo fetch pcre2
+{
+  {
+    linkdirs = {
+      "/usr/local/Cellar/pcre2/10.33/lib"
+    },
+    links = {
+      "pcre2-8"
+    },
+    defines = {
+      "PCRE2_CODE_UNIT_WIDTH=8"
+    },
+    includedirs = "/usr/local/Cellar/pcre2/10.33/include"
+  }
+}
+</code></pre>
+<pre><code class="lang-console">$ xrepo fetch --ldflags openssl
+-L/Users/ruki/.xmake/packages/o/openssl/1.1.1/d639b7d6e3244216b403b39df5101abf/lib -lcrypto -lssl
+</code></pre>
+<pre><code class="lang-console">$ xrepo fetch --cflags openssl
+-I/Users/ruki/.xmake/packages/o/openssl/1.1.1/d639b7d6e3244216b403b39df5101abf/include
+</code></pre>
+<pre><code class="lang-console">$ xrepo fetch -p [iphoneos|android] --cflags "zlib 1.2.x"
+-I/Users/ruki/.xmake/packages/z/zlib/1.2.11/df72d410e7e14391b1a4375d868a240c/include
+</code></pre>
+<pre><code class="lang-console">$ xrepo fetch --cflags --ldflags conan::zlib/1.2.11
+-I/Users/ruki/.conan/data/zlib/1.2.11/_/_/package/f74366f76f700cc6e991285892ad7a23c30e6d47/include -L/Users/ruki/.conan/data/zlib/1.2.11/_/_/package/f74366f76f700cc6e991285892ad7a23c30e6d47/lib -lz
+</code></pre>
+<h3 id="">导出安装后的包</h3>
+<p>xrepo 可以快速导出已经安装后的包,包括对应的库文件,头文件等等。</p>
+<pre><code class="lang-console">$ xrepo export -o /tmp/output zlib
+</code></pre>
+<h3 id="">搜索支持的包</h3>
+<pre><code class="lang-console">$ xrepo search zlib "pcr*"
+    zlib:
+      -> zlib: A Massively Spiffy Yet Delicately Unobtrusive Compression Library (in xmake-repo)
+    pcr*:
+      -> pcre2: A Perl Compatible Regular Expressions Library (in xmake-repo)
+      -> pcre: A Perl Compatible Regular Expressions Library (in xmake-repo)
+</code></pre>
+<h3 id="">查看包环境信息</h3>
+<pre><code class="lang-console">$ xrepo env --show luajit
+{
+  OLDPWD = "/mnt/tbox",
+  HOME = "/home/ruki",
+  PATH = "/home/ruki/.xmake/packages/l/luajit/2.1.0-beta3/fbac76d823b844f0b91abf3df0a3bc61/bin:/tmp:/tmp/arm-linux-musleabi-cross/bin:~/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
+  TERM = "xterm",
+  PWD = "/mnt/xmake",
+  XMAKE_PROGRAM_DIR = "/mnt/xmake/xmake",
+  HOSTNAME = "e6edd61ff1ab",
+  LD_LIBRARY_PATH = "/home/ruki/.xmake/packages/l/luajit/2.1.0-beta3/fbac76d823b844f0b91abf3df0a3bc61/lib",
+  SHLVL = "1",
+  _ = "/mnt/xmake/scripts/xrepo.sh"
+}
+</code></pre>
+<h3 id="">加载执行包环境并运行命令</h3>
+<pre><code class="lang-console">$ xrepo env luajit
+LuaJIT 2.1.0-beta3 -- Copyright (C) 2005-2017 Mike Pall. http://luajit.org/
+JIT: ON SSE2 SSE3 SSE4.1 BMI2 fold cse dce fwd dse narrow loop abc sink fuse
+>
+</code></pre>
+<pre><code class="lang-console">$ xrepo env -b "luajit 2.x" luajit
+$ xrepo env -p iphoneos -b "zlib,libpng,luajit 2.x" cmake ..
+</code></pre>
+<h3 id="">查看包信息</h3>
+<pre><code class="lang-console">$ xrepo info zlib
+The package info of project:
+    require(zlib):
+      -> description: A Massively Spiffy Yet Delicately Unobtrusive Compression Library
+      -> version: 1.2.11
+      -> urls:
+         -> http://zlib.net/zlib-1.2.11.tar.gz
+            -> c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
+         -> https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz
+            -> c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
+      -> repo: xmake-repo https://gitee.com/tboox/xmake-repo.git master
+      -> cachedir: /Users/ruki/.xmake/cache/packages/2010/z/zlib/1.2.11
+      -> installdir: /Users/ruki/.xmake/packages/z/zlib/1.2.11/d639b7d6e3244216b403b39df5101abf
+      -> searchdirs:
+      -> searchnames: zlib-1.2.11.tar.gz
+      -> fetchinfo: 1.2.11, system
+          -> version: 1.2.11
+          -> links: z
+          -> linkdirs: /usr/local/Cellar/zlib/1.2.11/lib
+          -> includedirs: /usr/local/Cellar/zlib/1.2.11/include
+      -> platforms: iphoneos, mingw@windows, macosx, mingw@linux,macosx, android@linux,macosx, windows, linux
+      -> requires:
+         -> plat: macosx
+         -> arch: x86_64
+         -> configs:
+            -> debug: false
+            -> vs_runtime: MT
+            -> shared: false
+      -> configs:
+      -> configs (builtin):
+         -> debug: Enable debug symbols. (default: false)
+         -> shared: Enable shared library. (default: false)
+         -> cflags: Set the C compiler flags.
+         -> cxflags: Set the C/C++ compiler flags.
+         -> cxxflags: Set the C++ compiler flags.
+         -> asflags: Set the assembler flags.
+         -> vs_runtime: Set vs compiler runtime. (default: MT)
+            -> values: {"MT","MD"}
+</code></pre>
+</article>
+</body>
+</html>

+ 0 - 5
packages/a.md

@@ -1,5 +0,0 @@
-## zlib
-
-##### A Massively Spiffy Yet Delicately Unobtrusive Compression Library
-
-> http://www.zlib.net

+ 1022 - 0
packages/android.md

@@ -0,0 +1,1022 @@
+## a
+### autoconf (android)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (android)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (android)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+
+## c
+### catch2 (android)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cjson (android)
+
+
+| Description | *Ultralightweight JSON parser in ANSI C.* |
+| -- | -- |
+| Homepage | [https://github.com/DaveGamble/cJSON](https://github.com/DaveGamble/cJSON) |
+| Versions | 1.7.10 |
+| Github | [cjson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cjson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] cjson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cjson")
+```
+
+
+### cmake (android)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### concurrentqueue (android)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (android)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (android)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (android)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## f
+### ffmpeg (android)
+
+
+| Description | *A collection of libraries to process multimedia content such as audio, video, subtitles and related metadata.* |
+| -- | -- |
+| Homepage | [https://www.ffmpeg.org](https://www.ffmpeg.org) |
+| Versions | 4.0.2 |
+| Github | [ffmpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/ffmpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] ffmpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ffmpeg")
+```
+
+
+### fmt (android)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+
+## g
+### gtest (android)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### imgui (android)
+
+
+| Description | *Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies* |
+| -- | -- |
+| Homepage | [https://github.com/ocornut/imgui](https://github.com/ocornut/imgui) |
+| Versions | v1.75, v1.79 |
+| Github | [imgui/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] imgui
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("imgui")
+```
+
+
+### inja (android)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (android)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## j
+### json-c (android)
+
+
+| Description | *JSON parser for C* |
+| -- | -- |
+| Homepage | [https://github.com/json-c/json-c/wiki](https://github.com/json-c/json-c/wiki) |
+| Versions | 0.13.1-20180305 |
+| Github | [json-c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/j/json-c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] json-c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("json-c")
+```
+
+
+
+## l
+### libjpeg (android)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libpng (android)
+
+
+| Description | *The official PNG reference library* |
+| -- | -- |
+| Homepage | [http://www.libpng.org/pub/png/libpng.html](http://www.libpng.org/pub/png/libpng.html) |
+| Versions | v1.6.36, v1.6.35, v1.6.34 |
+| Github | [libpng/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] libpng
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libpng")
+```
+
+
+### libtool (android)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+### libuv (android)
+
+
+| Description | *A multi-platform support library with a focus on asynchronous I/O.* |
+| -- | -- |
+| Homepage | [http://libuv.org/](http://libuv.org/) |
+| Versions | v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0 |
+| Github | [libuv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] libuv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libuv")
+```
+
+
+### libxmake (android)
+
+
+| Description | *The c/c++ bindings of the xmake core engine* |
+| -- | -- |
+| Homepage | [https://xmake.io](https://xmake.io) |
+| Versions | v2.3.3 |
+| Github | [libxmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] libxmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxmake")
+```
+
+
+### libxml2 (android)
+
+
+| Description | *The XML C parser and toolkit of Gnome.* |
+| -- | -- |
+| Homepage | [http://xmlsoft.org/](http://xmlsoft.org/) |
+| Versions | 2.9.9 |
+| Github | [libxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] libxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxml2")
+```
+
+
+### lua (android)
+
+
+| Description | *A powerful, efficient, lightweight, embeddable scripting language.* |
+| -- | -- |
+| Homepage | [http://lua.org](http://lua.org) |
+| Versions | 5.3.5, 5.1.5, 5.2.4 |
+| Github | [lua/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] lua
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("lua")
+```
+
+
+### luajit (android)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [http://luajit.org](http://luajit.org) |
+| Versions | 2.1.0-beta3 |
+| Github | [luajit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] luajit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("luajit")
+```
+
+
+
+## m
+### m4 (android)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (android)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### meson (android)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+### moonjit (android)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [https://github.com/moonjit/moonjit](https://github.com/moonjit/moonjit) |
+| Versions | 2.2.0 |
+| Github | [moonjit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] moonjit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("moonjit")
+```
+
+
+
+## n
+### nasm (android)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ninja (android)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (android)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## p
+### patch (android)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pkg-config (android)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protoc (android)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (android)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (android)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (android)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## s
+### spdlog (android)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### stb (android)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (android)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tinyxml2 (android)
+
+
+| Description | *simple, small, efficient, C++ XML parser that can be easily integrating into other programs.* |
+| -- | -- |
+| Homepage | [http://www.grinninglizard.com/tinyxml2/](http://www.grinninglizard.com/tinyxml2/) |
+| Versions | 8.0.0 |
+| Github | [tinyxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] tinyxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tinyxml2")
+```
+
+
+### tmxparser (android)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## y
+### yasm (android)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+
+## z
+### zlib (android)
+
+
+| Description | *A Massively Spiffy Yet Delicately Unobtrusive Compression Library* |
+| -- | -- |
+| Homepage | [http://www.zlib.net](http://www.zlib.net) |
+| Versions | 1.2.10, 1.2.11 |
+| Github | [zlib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p android [--ndk=/xxx] zlib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zlib")
+```
+
+
+

+ 0 - 0
packages/b.md


+ 820 - 0
packages/bsd.md

@@ -0,0 +1,820 @@
+## a
+### autoconf (bsd)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (bsd)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (bsd)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+
+## c
+### catch2 (bsd)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cmake (bsd)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### concurrentqueue (bsd)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (bsd)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (bsd)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (bsd)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## f
+### fmt (bsd)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+
+## g
+### gtest (bsd)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### inja (bsd)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (bsd)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## l
+### libjpeg (bsd)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libtool (bsd)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+### lua (bsd)
+
+
+| Description | *A powerful, efficient, lightweight, embeddable scripting language.* |
+| -- | -- |
+| Homepage | [http://lua.org](http://lua.org) |
+| Versions | 5.3.5, 5.1.5, 5.2.4 |
+| Github | [lua/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install lua
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("lua")
+```
+
+
+### luajit (bsd)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [http://luajit.org](http://luajit.org) |
+| Versions | 2.1.0-beta3 |
+| Github | [luajit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install luajit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("luajit")
+```
+
+
+
+## m
+### m4 (bsd)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (bsd)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### meson (bsd)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+### moonjit (bsd)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [https://github.com/moonjit/moonjit](https://github.com/moonjit/moonjit) |
+| Versions | 2.2.0 |
+| Github | [moonjit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install moonjit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("moonjit")
+```
+
+
+
+## n
+### nasm (bsd)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ncurses (bsd)
+
+
+| Description | *A free software emulation of curses.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/ncurses/](https://www.gnu.org/software/ncurses/) |
+| Versions | 6.1 |
+| Github | [ncurses/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ncurses/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ncurses
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ncurses")
+```
+
+
+### ninja (bsd)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (bsd)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## p
+### patch (bsd)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pkg-config (bsd)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protoc (bsd)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (bsd)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (bsd)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (bsd)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## s
+### spdlog (bsd)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### stb (bsd)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (bsd)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tmxparser (bsd)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## y
+### yasm (bsd)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+

+ 780 - 0
packages/cross.md

@@ -0,0 +1,780 @@
+## a
+### autoconf (cross)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (cross)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (cross)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+
+## c
+### catch2 (cross)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cmake (cross)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### concurrentqueue (cross)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (cross)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (cross)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (cross)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## f
+### fmt (cross)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+
+## g
+### gtest (cross)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### inja (cross)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (cross)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## l
+### libjpeg (cross)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libtool (cross)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+
+## m
+### m4 (cross)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (cross)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### meson (cross)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+
+## n
+### nasm (cross)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ninja (cross)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (cross)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## o
+### openssl (cross)
+
+
+| Description | *A robust, commercial-grade, and full-featured toolkit for TLS and SSL.* |
+| -- | -- |
+| Homepage | [https://www.openssl.org/](https://www.openssl.org/) |
+| Versions | 1.1.1, 1.0.2, 1.0.0 |
+| Github | [openssl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/o/openssl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] openssl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("openssl")
+```
+
+
+
+## p
+### patch (cross)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pkg-config (cross)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protoc (cross)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (cross)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (cross)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (cross)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## s
+### spdlog (cross)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### stb (cross)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (cross)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tmxparser (cross)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## y
+### yasm (cross)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+
+## z
+### zlib (cross)
+
+
+| Description | *A Massively Spiffy Yet Delicately Unobtrusive Compression Library* |
+| -- | -- |
+| Homepage | [http://www.zlib.net](http://www.zlib.net) |
+| Versions | 1.2.10, 1.2.11 |
+| Github | [zlib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p cross [--sdk=/xxx] zlib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zlib")
+```
+
+
+

+ 1044 - 0
packages/iphoneos.md

@@ -0,0 +1,1044 @@
+## a
+### autoconf (iphoneos)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (iphoneos)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (iphoneos)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+
+## c
+### catch2 (iphoneos)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cjson (iphoneos)
+
+
+| Description | *Ultralightweight JSON parser in ANSI C.* |
+| -- | -- |
+| Homepage | [https://github.com/DaveGamble/cJSON](https://github.com/DaveGamble/cJSON) |
+| Versions | 1.7.10 |
+| Github | [cjson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cjson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos cjson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cjson")
+```
+
+
+### cmake (iphoneos)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### concurrentqueue (iphoneos)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (iphoneos)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (iphoneos)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (iphoneos)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## f
+### fmt (iphoneos)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+
+## g
+### gtest (iphoneos)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### imgui (iphoneos)
+
+
+| Description | *Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies* |
+| -- | -- |
+| Homepage | [https://github.com/ocornut/imgui](https://github.com/ocornut/imgui) |
+| Versions | v1.75, v1.79 |
+| Github | [imgui/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos imgui
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("imgui")
+```
+
+
+### inja (iphoneos)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (iphoneos)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## j
+### json-c (iphoneos)
+
+
+| Description | *JSON parser for C* |
+| -- | -- |
+| Homepage | [https://github.com/json-c/json-c/wiki](https://github.com/json-c/json-c/wiki) |
+| Versions | 0.13.1-20180305 |
+| Github | [json-c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/j/json-c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos json-c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("json-c")
+```
+
+
+
+## l
+### libcurl (iphoneos)
+
+
+| Description | *The multiprotocol file transfer library.* |
+| -- | -- |
+| Homepage | [https://curl.haxx.se/](https://curl.haxx.se/) |
+| Versions | 7.64.1 |
+| Github | [libcurl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libcurl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libcurl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libcurl")
+```
+
+
+### libev (iphoneos)
+
+
+| Description | *Full-featured high-performance event loop loosely modelled after libevent.* |
+| -- | -- |
+| Homepage | [http://software.schmorp.de/pkg/libev](http://software.schmorp.de/pkg/libev) |
+| Versions | 4.24 |
+| Github | [libev/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libev/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libev
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libev")
+```
+
+
+### libffi (iphoneos)
+
+
+| Description | *Portable Foreign Function Interface library.* |
+| -- | -- |
+| Homepage | [https://sourceware.org/libffi/](https://sourceware.org/libffi/) |
+| Versions | 3.2.1 |
+| Github | [libffi/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libffi/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libffi
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libffi")
+```
+
+
+### libjpeg (iphoneos)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libpng (iphoneos)
+
+
+| Description | *The official PNG reference library* |
+| -- | -- |
+| Homepage | [http://www.libpng.org/pub/png/libpng.html](http://www.libpng.org/pub/png/libpng.html) |
+| Versions | v1.6.36, v1.6.35, v1.6.34 |
+| Github | [libpng/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libpng
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libpng")
+```
+
+
+### libraw (iphoneos)
+
+
+| Description | *LibRaw is a library for reading RAW files from digital cameras.* |
+| -- | -- |
+| Homepage | [http://www.libraw.org](http://www.libraw.org) |
+| Versions | 0.19.5 |
+| Github | [libraw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libraw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libraw")
+```
+
+
+### libtool (iphoneos)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+### libuv (iphoneos)
+
+
+| Description | *A multi-platform support library with a focus on asynchronous I/O.* |
+| -- | -- |
+| Homepage | [http://libuv.org/](http://libuv.org/) |
+| Versions | v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0 |
+| Github | [libuv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libuv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libuv")
+```
+
+
+### libxml2 (iphoneos)
+
+
+| Description | *The XML C parser and toolkit of Gnome.* |
+| -- | -- |
+| Homepage | [http://xmlsoft.org/](http://xmlsoft.org/) |
+| Versions | 2.9.9 |
+| Github | [libxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos libxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxml2")
+```
+
+
+### luajit (iphoneos)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [http://luajit.org](http://luajit.org) |
+| Versions | 2.1.0-beta3 |
+| Github | [luajit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos luajit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("luajit")
+```
+
+
+
+## m
+### m4 (iphoneos)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (iphoneos)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### meson (iphoneos)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+### moonjit (iphoneos)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [https://github.com/moonjit/moonjit](https://github.com/moonjit/moonjit) |
+| Versions | 2.2.0 |
+| Github | [moonjit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos moonjit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("moonjit")
+```
+
+
+
+## n
+### nasm (iphoneos)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ninja (iphoneos)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (iphoneos)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## p
+### patch (iphoneos)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pkg-config (iphoneos)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protoc (iphoneos)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (iphoneos)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (iphoneos)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (iphoneos)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## s
+### spdlog (iphoneos)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### stb (iphoneos)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (iphoneos)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tinyxml2 (iphoneos)
+
+
+| Description | *simple, small, efficient, C++ XML parser that can be easily integrating into other programs.* |
+| -- | -- |
+| Homepage | [http://www.grinninglizard.com/tinyxml2/](http://www.grinninglizard.com/tinyxml2/) |
+| Versions | 8.0.0 |
+| Github | [tinyxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos tinyxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tinyxml2")
+```
+
+
+### tmxparser (iphoneos)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## y
+### yasm (iphoneos)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+
+## z
+### zlib (iphoneos)
+
+
+| Description | *A Massively Spiffy Yet Delicately Unobtrusive Compression Library* |
+| -- | -- |
+| Homepage | [http://www.zlib.net](http://www.zlib.net) |
+| Versions | 1.2.10, 1.2.11 |
+| Github | [zlib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p iphoneos zlib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zlib")
+```
+
+
+

+ 2900 - 0
packages/linux.md

@@ -0,0 +1,2900 @@
+## a
+### abseil (linux)
+
+
+| Description | *C++ Common Libraries* |
+| -- | -- |
+| Homepage | [https://abseil.io](https://abseil.io) |
+| Versions | 20200225.1 |
+| Github | [abseil/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/abseil/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install abseil
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("abseil")
+```
+
+
+### assimp (linux)
+
+
+| Description | *Portable Open-Source library to import various well-known 3D model formats in a uniform manner* |
+| -- | -- |
+| Homepage | [https://assimp.org](https://assimp.org) |
+| Versions |  |
+| Github | [assimp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/assimp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install assimp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("assimp")
+```
+
+
+### autoconf (linux)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (linux)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (linux)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+### boost (linux)
+
+
+| Description | *Collection of portable C++ source libraries.* |
+| -- | -- |
+| Homepage | [https://www.boost.org/](https://www.boost.org/) |
+| Versions | 1.72.0, 1.73.0, 1.70.0 |
+| Github | [boost/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/boost/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install boost
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("boost")
+```
+
+
+### box2d (linux)
+
+
+| Description | *A 2D Physics Engine for Games* |
+| -- | -- |
+| Homepage | [https://box2d.org](https://box2d.org) |
+| Versions | 2.4.0 |
+| Github | [box2d/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/box2d/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install box2d
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("box2d")
+```
+
+
+### bullet3 (linux)
+
+
+| Description | *Bullet Physics SDK.* |
+| -- | -- |
+| Homepage | [http://bulletphysics.org](http://bulletphysics.org) |
+| Versions | 3.05, 2.88 |
+| Github | [bullet3/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bullet3/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bullet3
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bullet3")
+```
+
+
+### bzip2 (linux)
+
+
+| Description | *Freely available high-quality data compressor.* |
+| -- | -- |
+| Homepage | [https://en.wikipedia.org/wiki/Bzip2](https://en.wikipedia.org/wiki/Bzip2) |
+| Versions | 1.0.6 |
+| Github | [bzip2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bzip2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bzip2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bzip2")
+```
+
+
+
+## c
+### cairo (linux)
+
+
+| Description | *Vector graphics library with cross-device output support.* |
+| -- | -- |
+| Homepage | [https://cairographics.org/](https://cairographics.org/) |
+| Versions | 1.16.0 |
+| Github | [cairo/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cairo/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cairo
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cairo")
+```
+
+
+### catch2 (linux)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cjson (linux)
+
+
+| Description | *Ultralightweight JSON parser in ANSI C.* |
+| -- | -- |
+| Homepage | [https://github.com/DaveGamble/cJSON](https://github.com/DaveGamble/cJSON) |
+| Versions | 1.7.10 |
+| Github | [cjson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cjson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cjson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cjson")
+```
+
+
+### cmake (linux)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### co (linux)
+
+
+| Description | *Yet another libco and more.* |
+| -- | -- |
+| Homepage | [https://github.com/idealvin/co](https://github.com/idealvin/co) |
+| Versions |  |
+| Github | [co/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/co/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install co
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("co")
+```
+
+
+### concurrentqueue (linux)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (linux)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (linux)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (linux)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## e
+### eigen (linux)
+
+
+| Description | *C++ template library for linear algebra* |
+| -- | -- |
+| Homepage | [https://eigen.tuxfamily.org/](https://eigen.tuxfamily.org/) |
+| Versions | 3.3.8, 3.3.7 |
+| Github | [eigen/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/e/eigen/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install eigen
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("eigen")
+```
+
+
+### expat (linux)
+
+
+| Description | *XML 1.0 parser* |
+| -- | -- |
+| Homepage | [https://libexpat.github.io](https://libexpat.github.io) |
+| Versions | 2.2.6 |
+| Github | [expat/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expat/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install expat
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("expat")
+```
+
+
+### expresscpp (linux)
+
+
+| Description | *Fast, unopinionated, minimalist web framework for C++ Perfect for building REST APIs.* |
+| -- | -- |
+| Homepage | [https://github.com/expresscpp/expresscpp.git](https://github.com/expresscpp/expresscpp.git) |
+| Versions | v0.20.0 |
+| Github | [expresscpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expresscpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install expresscpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("expresscpp")
+```
+
+
+
+## f
+### ffmpeg (linux)
+
+
+| Description | *A collection of libraries to process multimedia content such as audio, video, subtitles and related metadata.* |
+| -- | -- |
+| Homepage | [https://www.ffmpeg.org](https://www.ffmpeg.org) |
+| Versions | 4.0.2 |
+| Github | [ffmpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/ffmpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ffmpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ffmpeg")
+```
+
+
+### fmt (linux)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+### fontconfig (linux)
+
+
+| Description | *A library for configuring and customizing font access.* |
+| -- | -- |
+| Homepage | [https://www.freedesktop.org/wiki/Software/fontconfig/](https://www.freedesktop.org/wiki/Software/fontconfig/) |
+| Versions | 2.13.1 |
+| Github | [fontconfig/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fontconfig/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install fontconfig
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fontconfig")
+```
+
+
+### freeglut (linux)
+
+
+| Description | *A free-software/open-source alternative to the OpenGL Utility Toolkit (GLUT) library.* |
+| -- | -- |
+| Homepage | [http://freeglut.sourceforge.net](http://freeglut.sourceforge.net) |
+| Versions | 3.0.0 |
+| Github | [freeglut/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freeglut/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install freeglut
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("freeglut")
+```
+
+
+### freetype (linux)
+
+
+| Description | *A freely available software library to render fonts.* |
+| -- | -- |
+| Homepage | [https://www.freetype.org](https://www.freetype.org) |
+| Versions | 2.9.1 |
+| Github | [freetype/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freetype/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install freetype
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("freetype")
+```
+
+
+
+## g
+### gettext (linux)
+
+
+| Description | *GNU internationalization (i18n) and localization (l10n) library.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/gettext/](https://www.gnu.org/software/gettext/) |
+| Versions | 0.19.8-1 |
+| Github | [gettext/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gettext/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gettext
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gettext")
+```
+
+
+### glew (linux)
+
+
+| Description | *A cross-platform open-source C/C++ extension loading library.* |
+| -- | -- |
+| Homepage | [http://glew.sourceforge.net/](http://glew.sourceforge.net/) |
+| Versions | 2.1.0 |
+| Github | [glew/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glew/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install glew
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glew")
+```
+
+
+### glfw (linux)
+
+
+| Description | *GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development.* |
+| -- | -- |
+| Homepage | [https://www.glfw.org/](https://www.glfw.org/) |
+| Versions |  |
+| Github | [glfw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glfw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install glfw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glfw")
+```
+
+
+### glib (linux)
+
+
+| Description | *Core application library for C.* |
+| -- | -- |
+| Homepage | [https://developer.gnome.org/glib/](https://developer.gnome.org/glib/) |
+| Versions | 2.60.2 |
+| Github | [glib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install glib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glib")
+```
+
+
+### go (linux)
+
+
+| Description | *The Go Programming Language* |
+| -- | -- |
+| Homepage | [https://golang.org/](https://golang.org/) |
+| Versions |  |
+| Github | [go/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/go/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install go
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("go")
+```
+
+
+### gperf (linux)
+
+
+| Description | *Perfect hash function generator.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/gperf](https://www.gnu.org/software/gperf) |
+| Versions | 3.1 |
+| Github | [gperf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gperf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gperf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gperf")
+```
+
+
+### gtest (linux)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### icu4c (linux)
+
+
+| Description | *C/C++ libraries for Unicode and globalization.* |
+| -- | -- |
+| Homepage | [https://ssl.icu-project.org/](https://ssl.icu-project.org/) |
+| Versions | 64.2 |
+| Github | [icu4c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/icu4c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install icu4c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("icu4c")
+```
+
+
+### imgui (linux)
+
+
+| Description | *Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies* |
+| -- | -- |
+| Homepage | [https://github.com/ocornut/imgui](https://github.com/ocornut/imgui) |
+| Versions | v1.75, v1.79 |
+| Github | [imgui/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install imgui
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("imgui")
+```
+
+
+### inja (linux)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (linux)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## j
+### json-c (linux)
+
+
+| Description | *JSON parser for C* |
+| -- | -- |
+| Homepage | [https://github.com/json-c/json-c/wiki](https://github.com/json-c/json-c/wiki) |
+| Versions | 0.13.1-20180305 |
+| Github | [json-c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/j/json-c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install json-c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("json-c")
+```
+
+
+
+## l
+### libcurl (linux)
+
+
+| Description | *The multiprotocol file transfer library.* |
+| -- | -- |
+| Homepage | [https://curl.haxx.se/](https://curl.haxx.se/) |
+| Versions | 7.64.1 |
+| Github | [libcurl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libcurl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libcurl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libcurl")
+```
+
+
+### libelf (linux)
+
+
+| Description | *ELF object file access library* |
+| -- | -- |
+| Homepage | [https://web.archive.org/web/20181111033959/www.mr511.de/software/english.html](https://web.archive.org/web/20181111033959/www.mr511.de/software/english.html) |
+| Versions | 0.8.13 |
+| Github | [libelf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libelf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libelf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libelf")
+```
+
+
+### libev (linux)
+
+
+| Description | *Full-featured high-performance event loop loosely modelled after libevent.* |
+| -- | -- |
+| Homepage | [http://software.schmorp.de/pkg/libev](http://software.schmorp.de/pkg/libev) |
+| Versions | 4.24 |
+| Github | [libev/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libev/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libev
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libev")
+```
+
+
+### libffi (linux)
+
+
+| Description | *Portable Foreign Function Interface library.* |
+| -- | -- |
+| Homepage | [https://sourceware.org/libffi/](https://sourceware.org/libffi/) |
+| Versions | 3.2.1 |
+| Github | [libffi/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libffi/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libffi
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libffi")
+```
+
+
+### libiconv (linux)
+
+
+| Description | *Character set conversion library.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libiconv](https://www.gnu.org/software/libiconv) |
+| Versions | 1.15 |
+| Github | [libiconv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libiconv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libiconv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libiconv")
+```
+
+
+### libjpeg (linux)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libmill (linux)
+
+
+| Description | *Go-style concurrency in C* |
+| -- | -- |
+| Homepage | [http://libmill.org](http://libmill.org) |
+| Versions | 1.18, 1.17 |
+| Github | [libmill/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libmill/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libmill
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libmill")
+```
+
+
+### libomp (linux)
+
+
+| Description | *LLVM's OpenMP runtime library.* |
+| -- | -- |
+| Homepage | [https://openmp.llvm.org/](https://openmp.llvm.org/) |
+| Versions | 10.0.1 |
+| Github | [libomp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libomp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libomp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libomp")
+```
+
+
+### libpng (linux)
+
+
+| Description | *The official PNG reference library* |
+| -- | -- |
+| Homepage | [http://www.libpng.org/pub/png/libpng.html](http://www.libpng.org/pub/png/libpng.html) |
+| Versions | v1.6.36, v1.6.35, v1.6.34 |
+| Github | [libpng/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libpng
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libpng")
+```
+
+
+### libpthread-stubs (linux)
+
+
+| Description | *X.Org: pthread-stubs.pc* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 0.4 |
+| Github | [libpthread-stubs/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpthread-stubs/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libpthread-stubs
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libpthread-stubs")
+```
+
+
+### libraw (linux)
+
+
+| Description | *LibRaw is a library for reading RAW files from digital cameras.* |
+| -- | -- |
+| Homepage | [http://www.libraw.org](http://www.libraw.org) |
+| Versions | 0.19.5 |
+| Github | [libraw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libraw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libraw")
+```
+
+
+### libsdl (linux)
+
+
+| Description | *Simple DirectMedia Layer* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/](https://www.libsdl.org/) |
+| Versions | 2.0.8 |
+| Github | [libsdl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl")
+```
+
+
+### libsdl_gfx (linux)
+
+
+| Description | *Simple DirectMedia Layer primitives drawing library* |
+| -- | -- |
+| Homepage | [https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/](https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/) |
+| Versions |  |
+| Github | [libsdl_gfx/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_gfx/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_gfx
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_gfx")
+```
+
+
+### libsdl_image (linux)
+
+
+| Description | *Simple DirectMedia Layer image loading library* |
+| -- | -- |
+| Homepage | [http://www.libsdl.org/projects/SDL_image/](http://www.libsdl.org/projects/SDL_image/) |
+| Versions | 2.0.5 |
+| Github | [libsdl_image/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_image/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_image
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_image")
+```
+
+
+### libsdl_mixer (linux)
+
+
+| Description | *Simple DirectMedia Layer mixer audio library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_mixer/](https://www.libsdl.org/projects/SDL_mixer/) |
+| Versions | 2.0.4 |
+| Github | [libsdl_mixer/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_mixer/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_mixer
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_mixer")
+```
+
+
+### libsdl_net (linux)
+
+
+| Description | *Simple DirectMedia Layer networking library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_net/](https://www.libsdl.org/projects/SDL_net/) |
+| Versions | 2.0.1 |
+| Github | [libsdl_net/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_net/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_net
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_net")
+```
+
+
+### libsdl_ttf (linux)
+
+
+| Description | *Simple DirectMedia Layer text rendering library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_ttf/](https://www.libsdl.org/projects/SDL_ttf/) |
+| Versions | 2.0.15 |
+| Github | [libsdl_ttf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_ttf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_ttf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_ttf")
+```
+
+
+### libtask (linux)
+
+
+| Description | *a Coroutine Library for C and Unix* |
+| -- | -- |
+| Homepage | [https://swtch.com/libtask/](https://swtch.com/libtask/) |
+| Versions | 1.0 |
+| Github | [libtask/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtask/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtask
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtask")
+```
+
+
+### libtiff (linux)
+
+
+| Description | *TIFF Library and Utilities.* |
+| -- | -- |
+| Homepage | [http://www.simplesystems.org/libtiff/](http://www.simplesystems.org/libtiff/) |
+| Versions | 4.1.0 |
+| Github | [libtiff/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtiff/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtiff
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtiff")
+```
+
+
+### libtool (linux)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+### libusb (linux)
+
+
+| Description | *A cross-platform library to access USB devices.* |
+| -- | -- |
+| Homepage | [https://libusb.info](https://libusb.info) |
+| Versions | v1.0.23 |
+| Github | [libusb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libusb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libusb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libusb")
+```
+
+
+### libuv (linux)
+
+
+| Description | *A multi-platform support library with a focus on asynchronous I/O.* |
+| -- | -- |
+| Homepage | [http://libuv.org/](http://libuv.org/) |
+| Versions | v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0 |
+| Github | [libuv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libuv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libuv")
+```
+
+
+### libwebsockets (linux)
+
+
+| Description | *canonical libwebsockets.org websocket library* |
+| -- | -- |
+| Homepage | [https://github.com/warmcat/libwebsockets](https://github.com/warmcat/libwebsockets) |
+| Versions | v3.2.0 |
+| Github | [libwebsockets/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libwebsockets/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libwebsockets
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libwebsockets")
+```
+
+
+### libx11 (linux)
+
+
+| Description | *X.Org: Core X11 protocol client library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.6.9 |
+| Github | [libx11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libx11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libx11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libx11")
+```
+
+
+### libxau (linux)
+
+
+| Description | *X.Org: A Sample Authorization Protocol for X* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.0.9 |
+| Github | [libxau/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxau/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxau
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxau")
+```
+
+
+### libxcb (linux)
+
+
+| Description | *X.Org: Interface to the X Window System protocol* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.13.1 |
+| Github | [libxcb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxcb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxcb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxcb")
+```
+
+
+### libxcursor (linux)
+
+
+| Description | *X.Org: X Window System Cursor management library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.2.0 |
+| Github | [libxcursor/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxcursor/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxcursor
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxcursor")
+```
+
+
+### libxdamage (linux)
+
+
+| Description | *X.Org: X Damage Extension library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.1.5 |
+| Github | [libxdamage/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxdamage/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxdamage
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxdamage")
+```
+
+
+### libxdmcp (linux)
+
+
+| Description | *X.Org: X Display Manager Control Protocol library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.1.3 |
+| Github | [libxdmcp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxdmcp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxdmcp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxdmcp")
+```
+
+
+### libxext (linux)
+
+
+| Description | *X.Org: Library for common extensions to the X11 protocol* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.3.4 |
+| Github | [libxext/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxext/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxext
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxext")
+```
+
+
+### libxfixes (linux)
+
+
+| Description | *X.Org: Header files for the XFIXES extension* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 5.0.3 |
+| Github | [libxfixes/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxfixes/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxfixes
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxfixes")
+```
+
+
+### libxi (linux)
+
+
+| Description | *X.Org: Library for the X Input Extension* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.7.10 |
+| Github | [libxi/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxi/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxi
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxi")
+```
+
+
+### libxinerama (linux)
+
+
+| Description | *X.Org: API for Xinerama extension to X11 Protocol* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.1.4 |
+| Github | [libxinerama/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxinerama/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxinerama
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxinerama")
+```
+
+
+### libxmake (linux)
+
+
+| Description | *The c/c++ bindings of the xmake core engine* |
+| -- | -- |
+| Homepage | [https://xmake.io](https://xmake.io) |
+| Versions | v2.3.3 |
+| Github | [libxmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxmake")
+```
+
+
+### libxml2 (linux)
+
+
+| Description | *The XML C parser and toolkit of Gnome.* |
+| -- | -- |
+| Homepage | [http://xmlsoft.org/](http://xmlsoft.org/) |
+| Versions | 2.9.9 |
+| Github | [libxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxml2")
+```
+
+
+### libxrandr (linux)
+
+
+| Description | *X.Org: X Resize, Rotate and Reflection extension library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.5.2 |
+| Github | [libxrandr/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxrandr/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxrandr
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxrandr")
+```
+
+
+### libxrender (linux)
+
+
+| Description | *X.Org: Library for the Render Extension to the X11 protocol* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 0.9.10 |
+| Github | [libxrender/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxrender/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxrender
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxrender")
+```
+
+
+### libxshmfence (linux)
+
+
+| Description | *X.Org: Shared memory 'SyncFence' synchronization primitive* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.3 |
+| Github | [libxshmfence/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxshmfence/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxshmfence
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxshmfence")
+```
+
+
+### libxv (linux)
+
+
+| Description | *X.Org: X Video (Xv) extension* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.0.11 |
+| Github | [libxv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxv")
+```
+
+
+### libxvmc (linux)
+
+
+| Description | *X.Org: X-Video Motion Compensation API* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.0.12 |
+| Github | [libxvmc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxvmc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxvmc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxvmc")
+```
+
+
+### libxxf86vm (linux)
+
+
+| Description | *X.Org: XFree86-VidMode X extension* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.1.4 |
+| Github | [libxxf86vm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxxf86vm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxxf86vm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxxf86vm")
+```
+
+
+### libyaml (linux)
+
+
+| Description | *Canonical source repository for LibYAML.* |
+| -- | -- |
+| Homepage | [http://pyyaml.org/wiki/LibYAML](http://pyyaml.org/wiki/LibYAML) |
+| Versions | 0.2.2 |
+| Github | [libyaml/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libyaml/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libyaml
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libyaml")
+```
+
+
+### lief (linux)
+
+
+| Description | *Library to Instrument Executable Formats.* |
+| -- | -- |
+| Homepage | [https://lief.quarkslab.com](https://lief.quarkslab.com) |
+| Versions | 0.10.1 |
+| Github | [lief/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lief/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install lief
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("lief")
+```
+
+
+### lua (linux)
+
+
+| Description | *A powerful, efficient, lightweight, embeddable scripting language.* |
+| -- | -- |
+| Homepage | [http://lua.org](http://lua.org) |
+| Versions | 5.3.5, 5.1.5, 5.2.4 |
+| Github | [lua/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install lua
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("lua")
+```
+
+
+### luajit (linux)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [http://luajit.org](http://luajit.org) |
+| Versions | 2.1.0-beta3 |
+| Github | [luajit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install luajit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("luajit")
+```
+
+
+
+## m
+### m4 (linux)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (linux)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### mbedtls (linux)
+
+
+| Description | *An SSL library* |
+| -- | -- |
+| Homepage | [https://tls.mbed.org](https://tls.mbed.org) |
+| Versions | 2.13.0, 2.7.6 |
+| Github | [mbedtls/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mbedtls/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install mbedtls
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("mbedtls")
+```
+
+
+### meson (linux)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+### mono (linux)
+
+
+| Description | *Cross platform, open source .NET development framework* |
+| -- | -- |
+| Homepage | [https://www.mono-project.com/](https://www.mono-project.com/) |
+| Versions | 6.8.0+123 |
+| Github | [mono/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mono/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install mono
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("mono")
+```
+
+
+### moonjit (linux)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [https://github.com/moonjit/moonjit](https://github.com/moonjit/moonjit) |
+| Versions | 2.2.0 |
+| Github | [moonjit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install moonjit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("moonjit")
+```
+
+
+### mysql (linux)
+
+
+| Description | *Open source relational database management system.* |
+| -- | -- |
+| Homepage | [https://dev.mysql.com/doc/refman/5.7/en/](https://dev.mysql.com/doc/refman/5.7/en/) |
+| Versions | 5.7.29 |
+| Github | [mysql/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mysql/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install mysql
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("mysql")
+```
+
+
+
+## n
+### nana (linux)
+
+
+| Description | *A modern C++ GUI library.* |
+| -- | -- |
+| Homepage | [http://nanapro.org](http://nanapro.org) |
+| Versions | 1.7.2, 1.7.4, 1.6.2 |
+| Github | [nana/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nana/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nana
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nana")
+```
+
+
+### nasm (linux)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ncurses (linux)
+
+
+| Description | *A free software emulation of curses.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/ncurses/](https://www.gnu.org/software/ncurses/) |
+| Versions | 6.1 |
+| Github | [ncurses/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ncurses/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ncurses
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ncurses")
+```
+
+
+### ninja (linux)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (linux)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## o
+### oatpp (linux)
+
+
+| Description | *Modern Web Framework for C++. High performance, simple API, cross platform, zero dependency.* |
+| -- | -- |
+| Homepage | [https://oatpp.io/](https://oatpp.io/) |
+| Versions | 1.0.0 |
+| Github | [oatpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/o/oatpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install oatpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("oatpp")
+```
+
+
+### opencv (linux)
+
+
+| Description | *A open source computer vision library.* |
+| -- | -- |
+| Homepage | [https://opencv.org/](https://opencv.org/) |
+| Versions | 3.4.9, 4.2.0 |
+| Github | [opencv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/o/opencv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install opencv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("opencv")
+```
+
+
+### openssl (linux)
+
+
+| Description | *A robust, commercial-grade, and full-featured toolkit for TLS and SSL.* |
+| -- | -- |
+| Homepage | [https://www.openssl.org/](https://www.openssl.org/) |
+| Versions | 1.1.1, 1.0.2, 1.0.0 |
+| Github | [openssl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/o/openssl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install openssl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("openssl")
+```
+
+
+
+## p
+### patch (linux)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pcre (linux)
+
+
+| Description | *A Perl Compatible Regular Expressions Library* |
+| -- | -- |
+| Homepage | [https://www.pcre.org/](https://www.pcre.org/) |
+| Versions | 8.40, 8.41 |
+| Github | [pcre/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pcre
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pcre")
+```
+
+
+### pcre2 (linux)
+
+
+| Description | *A Perl Compatible Regular Expressions Library* |
+| -- | -- |
+| Homepage | [https://www.pcre.org/](https://www.pcre.org/) |
+| Versions | 10.30, 10.31, 10.23 |
+| Github | [pcre2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pcre2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pcre2")
+```
+
+
+### pixman (linux)
+
+
+| Description | *Low-level library for pixel manipulation.* |
+| -- | -- |
+| Homepage | [https://cairographics.org/](https://cairographics.org/) |
+| Versions | 0.38.0 |
+| Github | [pixman/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pixman/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pixman
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pixman")
+```
+
+
+### pkg-config (linux)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protobuf-c (linux)
+
+
+| Description | *Google's data interchange format for c* |
+| -- | -- |
+| Homepage | [https://github.com/protobuf-c/protobuf-c](https://github.com/protobuf-c/protobuf-c) |
+| Versions | 1.3.1 |
+| Github | [protobuf-c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protobuf-c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protobuf-c")
+```
+
+
+### protobuf-cpp (linux)
+
+
+| Description | *Google's data interchange format for cpp* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0, 3.12.3 |
+| Github | [protobuf-cpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-cpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protobuf-cpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protobuf-cpp")
+```
+
+
+### protoc (linux)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (linux)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (linux)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (linux)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## s
+### sfml (linux)
+
+
+| Description | *Simple and Fast Multimedia Library* |
+| -- | -- |
+| Homepage | [https://www.sfml-dev.org](https://www.sfml-dev.org) |
+| Versions |  |
+| Github | [sfml/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sfml/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sfml
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sfml")
+```
+
+
+### skia (linux)
+
+
+| Description | *A complete 2D graphic library for drawing Text, Geometries, and Images.* |
+| -- | -- |
+| Homepage | [https://skia.org/](https://skia.org/) |
+| Versions | 68046c |
+| Github | [skia/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/skia/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install skia
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("skia")
+```
+
+
+### sol2 (linux)
+
+
+| Description | *A C++ library binding to Lua.* |
+| -- | -- |
+| Homepage | [https://github.com/ThePhD/sol2](https://github.com/ThePhD/sol2) |
+| Versions | v3.2.1 |
+| Github | [sol2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sol2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sol2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sol2")
+```
+
+
+### spdlog (linux)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### sqlite3 (linux)
+
+
+| Description | *The most used database engine in the world* |
+| -- | -- |
+| Homepage | [https://sqlite.org/](https://sqlite.org/) |
+| Versions | 3.24.0, 3.23.0 |
+| Github | [sqlite3/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sqlite3/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sqlite3
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sqlite3")
+```
+
+
+### stb (linux)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (linux)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tinyxml2 (linux)
+
+
+| Description | *simple, small, efficient, C++ XML parser that can be easily integrating into other programs.* |
+| -- | -- |
+| Homepage | [http://www.grinninglizard.com/tinyxml2/](http://www.grinninglizard.com/tinyxml2/) |
+| Versions | 8.0.0 |
+| Github | [tinyxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tinyxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tinyxml2")
+```
+
+
+### tmxparser (linux)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## u
+### unqlite (linux)
+
+
+| Description | *An Embedded NoSQL, Transactional Database Engine.* |
+| -- | -- |
+| Homepage | [https://unqlite.org](https://unqlite.org) |
+| Versions | 1.1.9 |
+| Github | [unqlite/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/u/unqlite/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install unqlite
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("unqlite")
+```
+
+
+### util-linux (linux)
+
+
+| Description | *Collection of Linux utilities.* |
+| -- | -- |
+| Homepage | [https://github.com/karelzak/util-linux](https://github.com/karelzak/util-linux) |
+| Versions | 2.32.1 |
+| Github | [util-linux/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/u/util-linux/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install util-linux
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("util-linux")
+```
+
+
+### util-macros (linux)
+
+
+| Description | *X.Org: Set of autoconf macros used to build other xorg packages* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.19.2 |
+| Github | [util-macros/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/u/util-macros/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install util-macros
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("util-macros")
+```
+
+
+
+## x
+### x264 (linux)
+
+
+| Description | *A free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format.* |
+| -- | -- |
+| Homepage | [https://www.videolan.org/developers/x264.html](https://www.videolan.org/developers/x264.html) |
+| Versions | v2018.09.25 |
+| Github | [x264/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/x264/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install x264
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("x264")
+```
+
+
+### x265 (linux)
+
+
+| Description | *A free software library and application for encoding video streams into the H.265/MPEG-H HEVC compression format.* |
+| -- | -- |
+| Homepage | [http://x265.org](http://x265.org) |
+| Versions | 2.9 |
+| Github | [x265/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/x265/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install x265
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("x265")
+```
+
+
+### xcb-proto (linux)
+
+
+| Description | *X.Org: XML-XCB protocol descriptions for libxcb code generation* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.13 |
+| Github | [xcb-proto/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xcb-proto/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install xcb-proto
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xcb-proto")
+```
+
+
+### xorgproto (linux)
+
+
+| Description | *X.Org: Protocol Headers* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 2019.2 |
+| Github | [xorgproto/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xorgproto/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install xorgproto
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xorgproto")
+```
+
+
+### xtrans (linux)
+
+
+| Description | *X.Org: X Network Transport layer shared code* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.4.0 |
+| Github | [xtrans/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xtrans/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install xtrans
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xtrans")
+```
+
+
+### xz (linux)
+
+
+| Description | *General-purpose data compression with high compression ratio.* |
+| -- | -- |
+| Homepage | [https://tukaani.org/xz/](https://tukaani.org/xz/) |
+| Versions | 5.2.4 |
+| Github | [xz/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xz/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install xz
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xz")
+```
+
+
+
+## y
+### yasm (linux)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+
+## z
+### zeromq (linux)
+
+
+| Description | *High-performance, asynchronous messaging library* |
+| -- | -- |
+| Homepage | [https://zeromq.org/](https://zeromq.org/) |
+| Versions | 4.3.2 |
+| Github | [zeromq/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zeromq/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install zeromq
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zeromq")
+```
+
+
+### zlib (linux)
+
+
+| Description | *A Massively Spiffy Yet Delicately Unobtrusive Compression Library* |
+| -- | -- |
+| Homepage | [http://www.zlib.net](http://www.zlib.net) |
+| Versions | 1.2.10, 1.2.11 |
+| Github | [zlib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install zlib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zlib")
+```
+
+
+

+ 2858 - 0
packages/macosx.md

@@ -0,0 +1,2858 @@
+## a
+### abseil (macosx)
+
+
+| Description | *C++ Common Libraries* |
+| -- | -- |
+| Homepage | [https://abseil.io](https://abseil.io) |
+| Versions | 20200225.1 |
+| Github | [abseil/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/abseil/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install abseil
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("abseil")
+```
+
+
+### assimp (macosx)
+
+
+| Description | *Portable Open-Source library to import various well-known 3D model formats in a uniform manner* |
+| -- | -- |
+| Homepage | [https://assimp.org](https://assimp.org) |
+| Versions |  |
+| Github | [assimp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/assimp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install assimp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("assimp")
+```
+
+
+### autoconf (macosx)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (macosx)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (macosx)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+### boost (macosx)
+
+
+| Description | *Collection of portable C++ source libraries.* |
+| -- | -- |
+| Homepage | [https://www.boost.org/](https://www.boost.org/) |
+| Versions | 1.72.0, 1.73.0, 1.70.0 |
+| Github | [boost/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/boost/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install boost
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("boost")
+```
+
+
+### box2d (macosx)
+
+
+| Description | *A 2D Physics Engine for Games* |
+| -- | -- |
+| Homepage | [https://box2d.org](https://box2d.org) |
+| Versions | 2.4.0 |
+| Github | [box2d/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/box2d/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install box2d
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("box2d")
+```
+
+
+### bullet3 (macosx)
+
+
+| Description | *Bullet Physics SDK.* |
+| -- | -- |
+| Homepage | [http://bulletphysics.org](http://bulletphysics.org) |
+| Versions | 3.05, 2.88 |
+| Github | [bullet3/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bullet3/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bullet3
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bullet3")
+```
+
+
+### bzip2 (macosx)
+
+
+| Description | *Freely available high-quality data compressor.* |
+| -- | -- |
+| Homepage | [https://en.wikipedia.org/wiki/Bzip2](https://en.wikipedia.org/wiki/Bzip2) |
+| Versions | 1.0.6 |
+| Github | [bzip2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bzip2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bzip2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bzip2")
+```
+
+
+
+## c
+### cairo (macosx)
+
+
+| Description | *Vector graphics library with cross-device output support.* |
+| -- | -- |
+| Homepage | [https://cairographics.org/](https://cairographics.org/) |
+| Versions | 1.16.0 |
+| Github | [cairo/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cairo/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cairo
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cairo")
+```
+
+
+### catch2 (macosx)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cjson (macosx)
+
+
+| Description | *Ultralightweight JSON parser in ANSI C.* |
+| -- | -- |
+| Homepage | [https://github.com/DaveGamble/cJSON](https://github.com/DaveGamble/cJSON) |
+| Versions | 1.7.10 |
+| Github | [cjson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cjson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cjson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cjson")
+```
+
+
+### cmake (macosx)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### co (macosx)
+
+
+| Description | *Yet another libco and more.* |
+| -- | -- |
+| Homepage | [https://github.com/idealvin/co](https://github.com/idealvin/co) |
+| Versions |  |
+| Github | [co/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/co/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install co
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("co")
+```
+
+
+### concurrentqueue (macosx)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (macosx)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (macosx)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (macosx)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## e
+### eigen (macosx)
+
+
+| Description | *C++ template library for linear algebra* |
+| -- | -- |
+| Homepage | [https://eigen.tuxfamily.org/](https://eigen.tuxfamily.org/) |
+| Versions | 3.3.8, 3.3.7 |
+| Github | [eigen/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/e/eigen/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install eigen
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("eigen")
+```
+
+
+### expat (macosx)
+
+
+| Description | *XML 1.0 parser* |
+| -- | -- |
+| Homepage | [https://libexpat.github.io](https://libexpat.github.io) |
+| Versions | 2.2.6 |
+| Github | [expat/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expat/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install expat
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("expat")
+```
+
+
+### expresscpp (macosx)
+
+
+| Description | *Fast, unopinionated, minimalist web framework for C++ Perfect for building REST APIs.* |
+| -- | -- |
+| Homepage | [https://github.com/expresscpp/expresscpp.git](https://github.com/expresscpp/expresscpp.git) |
+| Versions | v0.20.0 |
+| Github | [expresscpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expresscpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install expresscpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("expresscpp")
+```
+
+
+
+## f
+### ffmpeg (macosx)
+
+
+| Description | *A collection of libraries to process multimedia content such as audio, video, subtitles and related metadata.* |
+| -- | -- |
+| Homepage | [https://www.ffmpeg.org](https://www.ffmpeg.org) |
+| Versions | 4.0.2 |
+| Github | [ffmpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/ffmpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ffmpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ffmpeg")
+```
+
+
+### fmt (macosx)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+### fontconfig (macosx)
+
+
+| Description | *A library for configuring and customizing font access.* |
+| -- | -- |
+| Homepage | [https://www.freedesktop.org/wiki/Software/fontconfig/](https://www.freedesktop.org/wiki/Software/fontconfig/) |
+| Versions | 2.13.1 |
+| Github | [fontconfig/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fontconfig/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install fontconfig
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fontconfig")
+```
+
+
+### freetype (macosx)
+
+
+| Description | *A freely available software library to render fonts.* |
+| -- | -- |
+| Homepage | [https://www.freetype.org](https://www.freetype.org) |
+| Versions | 2.9.1 |
+| Github | [freetype/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freetype/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install freetype
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("freetype")
+```
+
+
+
+## g
+### gettext (macosx)
+
+
+| Description | *GNU internationalization (i18n) and localization (l10n) library.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/gettext/](https://www.gnu.org/software/gettext/) |
+| Versions | 0.19.8-1 |
+| Github | [gettext/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gettext/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gettext
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gettext")
+```
+
+
+### glew (macosx)
+
+
+| Description | *A cross-platform open-source C/C++ extension loading library.* |
+| -- | -- |
+| Homepage | [http://glew.sourceforge.net/](http://glew.sourceforge.net/) |
+| Versions | 2.1.0 |
+| Github | [glew/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glew/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install glew
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glew")
+```
+
+
+### glfw (macosx)
+
+
+| Description | *GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development.* |
+| -- | -- |
+| Homepage | [https://www.glfw.org/](https://www.glfw.org/) |
+| Versions |  |
+| Github | [glfw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glfw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install glfw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glfw")
+```
+
+
+### glib (macosx)
+
+
+| Description | *Core application library for C.* |
+| -- | -- |
+| Homepage | [https://developer.gnome.org/glib/](https://developer.gnome.org/glib/) |
+| Versions | 2.60.2 |
+| Github | [glib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install glib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glib")
+```
+
+
+### go (macosx)
+
+
+| Description | *The Go Programming Language* |
+| -- | -- |
+| Homepage | [https://golang.org/](https://golang.org/) |
+| Versions |  |
+| Github | [go/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/go/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install go
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("go")
+```
+
+
+### gperf (macosx)
+
+
+| Description | *Perfect hash function generator.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/gperf](https://www.gnu.org/software/gperf) |
+| Versions | 3.1 |
+| Github | [gperf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gperf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gperf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gperf")
+```
+
+
+### gtest (macosx)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### icu4c (macosx)
+
+
+| Description | *C/C++ libraries for Unicode and globalization.* |
+| -- | -- |
+| Homepage | [https://ssl.icu-project.org/](https://ssl.icu-project.org/) |
+| Versions | 64.2 |
+| Github | [icu4c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/icu4c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install icu4c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("icu4c")
+```
+
+
+### imgui (macosx)
+
+
+| Description | *Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies* |
+| -- | -- |
+| Homepage | [https://github.com/ocornut/imgui](https://github.com/ocornut/imgui) |
+| Versions | v1.75, v1.79 |
+| Github | [imgui/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install imgui
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("imgui")
+```
+
+
+### inja (macosx)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (macosx)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## j
+### json-c (macosx)
+
+
+| Description | *JSON parser for C* |
+| -- | -- |
+| Homepage | [https://github.com/json-c/json-c/wiki](https://github.com/json-c/json-c/wiki) |
+| Versions | 0.13.1-20180305 |
+| Github | [json-c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/j/json-c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install json-c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("json-c")
+```
+
+
+
+## l
+### libcurl (macosx)
+
+
+| Description | *The multiprotocol file transfer library.* |
+| -- | -- |
+| Homepage | [https://curl.haxx.se/](https://curl.haxx.se/) |
+| Versions | 7.64.1 |
+| Github | [libcurl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libcurl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libcurl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libcurl")
+```
+
+
+### libev (macosx)
+
+
+| Description | *Full-featured high-performance event loop loosely modelled after libevent.* |
+| -- | -- |
+| Homepage | [http://software.schmorp.de/pkg/libev](http://software.schmorp.de/pkg/libev) |
+| Versions | 4.24 |
+| Github | [libev/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libev/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libev
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libev")
+```
+
+
+### libffi (macosx)
+
+
+| Description | *Portable Foreign Function Interface library.* |
+| -- | -- |
+| Homepage | [https://sourceware.org/libffi/](https://sourceware.org/libffi/) |
+| Versions | 3.2.1 |
+| Github | [libffi/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libffi/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libffi
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libffi")
+```
+
+
+### libiconv (macosx)
+
+
+| Description | *Character set conversion library.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libiconv](https://www.gnu.org/software/libiconv) |
+| Versions | 1.15 |
+| Github | [libiconv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libiconv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libiconv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libiconv")
+```
+
+
+### libjpeg (macosx)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libmill (macosx)
+
+
+| Description | *Go-style concurrency in C* |
+| -- | -- |
+| Homepage | [http://libmill.org](http://libmill.org) |
+| Versions | 1.18, 1.17 |
+| Github | [libmill/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libmill/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libmill
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libmill")
+```
+
+
+### libomp (macosx)
+
+
+| Description | *LLVM's OpenMP runtime library.* |
+| -- | -- |
+| Homepage | [https://openmp.llvm.org/](https://openmp.llvm.org/) |
+| Versions | 10.0.1 |
+| Github | [libomp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libomp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libomp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libomp")
+```
+
+
+### libpng (macosx)
+
+
+| Description | *The official PNG reference library* |
+| -- | -- |
+| Homepage | [http://www.libpng.org/pub/png/libpng.html](http://www.libpng.org/pub/png/libpng.html) |
+| Versions | v1.6.36, v1.6.35, v1.6.34 |
+| Github | [libpng/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libpng
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libpng")
+```
+
+
+### libpthread-stubs (macosx)
+
+
+| Description | *X.Org: pthread-stubs.pc* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 0.4 |
+| Github | [libpthread-stubs/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpthread-stubs/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libpthread-stubs
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libpthread-stubs")
+```
+
+
+### libraw (macosx)
+
+
+| Description | *LibRaw is a library for reading RAW files from digital cameras.* |
+| -- | -- |
+| Homepage | [http://www.libraw.org](http://www.libraw.org) |
+| Versions | 0.19.5 |
+| Github | [libraw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libraw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libraw")
+```
+
+
+### libsdl (macosx)
+
+
+| Description | *Simple DirectMedia Layer* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/](https://www.libsdl.org/) |
+| Versions | 2.0.8 |
+| Github | [libsdl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl")
+```
+
+
+### libsdl_gfx (macosx)
+
+
+| Description | *Simple DirectMedia Layer primitives drawing library* |
+| -- | -- |
+| Homepage | [https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/](https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/) |
+| Versions |  |
+| Github | [libsdl_gfx/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_gfx/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_gfx
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_gfx")
+```
+
+
+### libsdl_image (macosx)
+
+
+| Description | *Simple DirectMedia Layer image loading library* |
+| -- | -- |
+| Homepage | [http://www.libsdl.org/projects/SDL_image/](http://www.libsdl.org/projects/SDL_image/) |
+| Versions | 2.0.5 |
+| Github | [libsdl_image/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_image/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_image
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_image")
+```
+
+
+### libsdl_mixer (macosx)
+
+
+| Description | *Simple DirectMedia Layer mixer audio library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_mixer/](https://www.libsdl.org/projects/SDL_mixer/) |
+| Versions | 2.0.4 |
+| Github | [libsdl_mixer/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_mixer/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_mixer
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_mixer")
+```
+
+
+### libsdl_net (macosx)
+
+
+| Description | *Simple DirectMedia Layer networking library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_net/](https://www.libsdl.org/projects/SDL_net/) |
+| Versions | 2.0.1 |
+| Github | [libsdl_net/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_net/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_net
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_net")
+```
+
+
+### libsdl_ttf (macosx)
+
+
+| Description | *Simple DirectMedia Layer text rendering library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_ttf/](https://www.libsdl.org/projects/SDL_ttf/) |
+| Versions | 2.0.15 |
+| Github | [libsdl_ttf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_ttf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_ttf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_ttf")
+```
+
+
+### libtask (macosx)
+
+
+| Description | *a Coroutine Library for C and Unix* |
+| -- | -- |
+| Homepage | [https://swtch.com/libtask/](https://swtch.com/libtask/) |
+| Versions | 1.0 |
+| Github | [libtask/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtask/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtask
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtask")
+```
+
+
+### libtiff (macosx)
+
+
+| Description | *TIFF Library and Utilities.* |
+| -- | -- |
+| Homepage | [http://www.simplesystems.org/libtiff/](http://www.simplesystems.org/libtiff/) |
+| Versions | 4.1.0 |
+| Github | [libtiff/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtiff/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtiff
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtiff")
+```
+
+
+### libtool (macosx)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+### libusb (macosx)
+
+
+| Description | *A cross-platform library to access USB devices.* |
+| -- | -- |
+| Homepage | [https://libusb.info](https://libusb.info) |
+| Versions | v1.0.23 |
+| Github | [libusb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libusb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libusb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libusb")
+```
+
+
+### libuv (macosx)
+
+
+| Description | *A multi-platform support library with a focus on asynchronous I/O.* |
+| -- | -- |
+| Homepage | [http://libuv.org/](http://libuv.org/) |
+| Versions | v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0 |
+| Github | [libuv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libuv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libuv")
+```
+
+
+### libwebsockets (macosx)
+
+
+| Description | *canonical libwebsockets.org websocket library* |
+| -- | -- |
+| Homepage | [https://github.com/warmcat/libwebsockets](https://github.com/warmcat/libwebsockets) |
+| Versions | v3.2.0 |
+| Github | [libwebsockets/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libwebsockets/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libwebsockets
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libwebsockets")
+```
+
+
+### libx11 (macosx)
+
+
+| Description | *X.Org: Core X11 protocol client library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.6.9 |
+| Github | [libx11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libx11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libx11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libx11")
+```
+
+
+### libxau (macosx)
+
+
+| Description | *X.Org: A Sample Authorization Protocol for X* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.0.9 |
+| Github | [libxau/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxau/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxau
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxau")
+```
+
+
+### libxcb (macosx)
+
+
+| Description | *X.Org: Interface to the X Window System protocol* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.13.1 |
+| Github | [libxcb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxcb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxcb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxcb")
+```
+
+
+### libxcursor (macosx)
+
+
+| Description | *X.Org: X Window System Cursor management library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.2.0 |
+| Github | [libxcursor/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxcursor/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxcursor
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxcursor")
+```
+
+
+### libxdamage (macosx)
+
+
+| Description | *X.Org: X Damage Extension library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.1.5 |
+| Github | [libxdamage/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxdamage/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxdamage
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxdamage")
+```
+
+
+### libxdmcp (macosx)
+
+
+| Description | *X.Org: X Display Manager Control Protocol library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.1.3 |
+| Github | [libxdmcp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxdmcp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxdmcp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxdmcp")
+```
+
+
+### libxext (macosx)
+
+
+| Description | *X.Org: Library for common extensions to the X11 protocol* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.3.4 |
+| Github | [libxext/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxext/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxext
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxext")
+```
+
+
+### libxfixes (macosx)
+
+
+| Description | *X.Org: Header files for the XFIXES extension* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 5.0.3 |
+| Github | [libxfixes/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxfixes/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxfixes
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxfixes")
+```
+
+
+### libxi (macosx)
+
+
+| Description | *X.Org: Library for the X Input Extension* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.7.10 |
+| Github | [libxi/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxi/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxi
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxi")
+```
+
+
+### libxinerama (macosx)
+
+
+| Description | *X.Org: API for Xinerama extension to X11 Protocol* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.1.4 |
+| Github | [libxinerama/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxinerama/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxinerama
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxinerama")
+```
+
+
+### libxmake (macosx)
+
+
+| Description | *The c/c++ bindings of the xmake core engine* |
+| -- | -- |
+| Homepage | [https://xmake.io](https://xmake.io) |
+| Versions | v2.3.3 |
+| Github | [libxmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxmake")
+```
+
+
+### libxml2 (macosx)
+
+
+| Description | *The XML C parser and toolkit of Gnome.* |
+| -- | -- |
+| Homepage | [http://xmlsoft.org/](http://xmlsoft.org/) |
+| Versions | 2.9.9 |
+| Github | [libxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxml2")
+```
+
+
+### libxrandr (macosx)
+
+
+| Description | *X.Org: X Resize, Rotate and Reflection extension library* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.5.2 |
+| Github | [libxrandr/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxrandr/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxrandr
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxrandr")
+```
+
+
+### libxrender (macosx)
+
+
+| Description | *X.Org: Library for the Render Extension to the X11 protocol* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 0.9.10 |
+| Github | [libxrender/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxrender/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxrender
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxrender")
+```
+
+
+### libxshmfence (macosx)
+
+
+| Description | *X.Org: Shared memory 'SyncFence' synchronization primitive* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.3 |
+| Github | [libxshmfence/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxshmfence/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxshmfence
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxshmfence")
+```
+
+
+### libxv (macosx)
+
+
+| Description | *X.Org: X Video (Xv) extension* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.0.11 |
+| Github | [libxv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxv")
+```
+
+
+### libxvmc (macosx)
+
+
+| Description | *X.Org: X-Video Motion Compensation API* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.0.12 |
+| Github | [libxvmc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxvmc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxvmc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxvmc")
+```
+
+
+### libxxf86vm (macosx)
+
+
+| Description | *X.Org: XFree86-VidMode X extension* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.1.4 |
+| Github | [libxxf86vm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxxf86vm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxxf86vm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxxf86vm")
+```
+
+
+### libyaml (macosx)
+
+
+| Description | *Canonical source repository for LibYAML.* |
+| -- | -- |
+| Homepage | [http://pyyaml.org/wiki/LibYAML](http://pyyaml.org/wiki/LibYAML) |
+| Versions | 0.2.2 |
+| Github | [libyaml/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libyaml/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libyaml
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libyaml")
+```
+
+
+### lief (macosx)
+
+
+| Description | *Library to Instrument Executable Formats.* |
+| -- | -- |
+| Homepage | [https://lief.quarkslab.com](https://lief.quarkslab.com) |
+| Versions | 0.10.1 |
+| Github | [lief/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lief/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install lief
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("lief")
+```
+
+
+### lua (macosx)
+
+
+| Description | *A powerful, efficient, lightweight, embeddable scripting language.* |
+| -- | -- |
+| Homepage | [http://lua.org](http://lua.org) |
+| Versions | 5.3.5, 5.1.5, 5.2.4 |
+| Github | [lua/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install lua
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("lua")
+```
+
+
+### luajit (macosx)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [http://luajit.org](http://luajit.org) |
+| Versions | 2.1.0-beta3 |
+| Github | [luajit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install luajit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("luajit")
+```
+
+
+
+## m
+### m4 (macosx)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (macosx)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### mbedtls (macosx)
+
+
+| Description | *An SSL library* |
+| -- | -- |
+| Homepage | [https://tls.mbed.org](https://tls.mbed.org) |
+| Versions | 2.13.0, 2.7.6 |
+| Github | [mbedtls/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mbedtls/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install mbedtls
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("mbedtls")
+```
+
+
+### meson (macosx)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+### mono (macosx)
+
+
+| Description | *Cross platform, open source .NET development framework* |
+| -- | -- |
+| Homepage | [https://www.mono-project.com/](https://www.mono-project.com/) |
+| Versions | 6.8.0+123 |
+| Github | [mono/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mono/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install mono
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("mono")
+```
+
+
+### moonjit (macosx)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [https://github.com/moonjit/moonjit](https://github.com/moonjit/moonjit) |
+| Versions | 2.2.0 |
+| Github | [moonjit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install moonjit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("moonjit")
+```
+
+
+### mysql (macosx)
+
+
+| Description | *Open source relational database management system.* |
+| -- | -- |
+| Homepage | [https://dev.mysql.com/doc/refman/5.7/en/](https://dev.mysql.com/doc/refman/5.7/en/) |
+| Versions | 5.7.29 |
+| Github | [mysql/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/mysql/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install mysql
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("mysql")
+```
+
+
+
+## n
+### nasm (macosx)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ncurses (macosx)
+
+
+| Description | *A free software emulation of curses.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/ncurses/](https://www.gnu.org/software/ncurses/) |
+| Versions | 6.1 |
+| Github | [ncurses/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ncurses/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ncurses
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ncurses")
+```
+
+
+### ninja (macosx)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (macosx)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## o
+### oatpp (macosx)
+
+
+| Description | *Modern Web Framework for C++. High performance, simple API, cross platform, zero dependency.* |
+| -- | -- |
+| Homepage | [https://oatpp.io/](https://oatpp.io/) |
+| Versions | 1.0.0 |
+| Github | [oatpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/o/oatpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install oatpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("oatpp")
+```
+
+
+### opencv (macosx)
+
+
+| Description | *A open source computer vision library.* |
+| -- | -- |
+| Homepage | [https://opencv.org/](https://opencv.org/) |
+| Versions | 3.4.9, 4.2.0 |
+| Github | [opencv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/o/opencv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install opencv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("opencv")
+```
+
+
+### openssl (macosx)
+
+
+| Description | *A robust, commercial-grade, and full-featured toolkit for TLS and SSL.* |
+| -- | -- |
+| Homepage | [https://www.openssl.org/](https://www.openssl.org/) |
+| Versions | 1.1.1, 1.0.2, 1.0.0 |
+| Github | [openssl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/o/openssl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install openssl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("openssl")
+```
+
+
+
+## p
+### patch (macosx)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pcre (macosx)
+
+
+| Description | *A Perl Compatible Regular Expressions Library* |
+| -- | -- |
+| Homepage | [https://www.pcre.org/](https://www.pcre.org/) |
+| Versions | 8.40, 8.41 |
+| Github | [pcre/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pcre
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pcre")
+```
+
+
+### pcre2 (macosx)
+
+
+| Description | *A Perl Compatible Regular Expressions Library* |
+| -- | -- |
+| Homepage | [https://www.pcre.org/](https://www.pcre.org/) |
+| Versions | 10.30, 10.31, 10.23 |
+| Github | [pcre2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pcre2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pcre2")
+```
+
+
+### pixman (macosx)
+
+
+| Description | *Low-level library for pixel manipulation.* |
+| -- | -- |
+| Homepage | [https://cairographics.org/](https://cairographics.org/) |
+| Versions | 0.38.0 |
+| Github | [pixman/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pixman/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pixman
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pixman")
+```
+
+
+### pkg-config (macosx)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protobuf-c (macosx)
+
+
+| Description | *Google's data interchange format for c* |
+| -- | -- |
+| Homepage | [https://github.com/protobuf-c/protobuf-c](https://github.com/protobuf-c/protobuf-c) |
+| Versions | 1.3.1 |
+| Github | [protobuf-c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protobuf-c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protobuf-c")
+```
+
+
+### protobuf-cpp (macosx)
+
+
+| Description | *Google's data interchange format for cpp* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0, 3.12.3 |
+| Github | [protobuf-cpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-cpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protobuf-cpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protobuf-cpp")
+```
+
+
+### protoc (macosx)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (macosx)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (macosx)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (macosx)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## r
+### raylib (macosx)
+
+
+| Description | *A simple and easy-to-use library to enjoy videogames programming.* |
+| -- | -- |
+| Homepage | [http://www.raylib.com](http://www.raylib.com) |
+| Versions | 2.5.0, 3.0.0 |
+| Github | [raylib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/r/raylib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install raylib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("raylib")
+```
+
+
+
+## s
+### sfml (macosx)
+
+
+| Description | *Simple and Fast Multimedia Library* |
+| -- | -- |
+| Homepage | [https://www.sfml-dev.org](https://www.sfml-dev.org) |
+| Versions |  |
+| Github | [sfml/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sfml/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sfml
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sfml")
+```
+
+
+### skia (macosx)
+
+
+| Description | *A complete 2D graphic library for drawing Text, Geometries, and Images.* |
+| -- | -- |
+| Homepage | [https://skia.org/](https://skia.org/) |
+| Versions | 68046c |
+| Github | [skia/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/skia/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install skia
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("skia")
+```
+
+
+### sol2 (macosx)
+
+
+| Description | *A C++ library binding to Lua.* |
+| -- | -- |
+| Homepage | [https://github.com/ThePhD/sol2](https://github.com/ThePhD/sol2) |
+| Versions | v3.2.1 |
+| Github | [sol2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sol2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sol2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sol2")
+```
+
+
+### spdlog (macosx)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### sqlite3 (macosx)
+
+
+| Description | *The most used database engine in the world* |
+| -- | -- |
+| Homepage | [https://sqlite.org/](https://sqlite.org/) |
+| Versions | 3.24.0, 3.23.0 |
+| Github | [sqlite3/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sqlite3/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sqlite3
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sqlite3")
+```
+
+
+### stb (macosx)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (macosx)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tinyxml2 (macosx)
+
+
+| Description | *simple, small, efficient, C++ XML parser that can be easily integrating into other programs.* |
+| -- | -- |
+| Homepage | [http://www.grinninglizard.com/tinyxml2/](http://www.grinninglizard.com/tinyxml2/) |
+| Versions | 8.0.0 |
+| Github | [tinyxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tinyxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tinyxml2")
+```
+
+
+### tmxparser (macosx)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## u
+### unqlite (macosx)
+
+
+| Description | *An Embedded NoSQL, Transactional Database Engine.* |
+| -- | -- |
+| Homepage | [https://unqlite.org](https://unqlite.org) |
+| Versions | 1.1.9 |
+| Github | [unqlite/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/u/unqlite/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install unqlite
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("unqlite")
+```
+
+
+### util-linux (macosx)
+
+
+| Description | *Collection of Linux utilities.* |
+| -- | -- |
+| Homepage | [https://github.com/karelzak/util-linux](https://github.com/karelzak/util-linux) |
+| Versions | 2.32.1 |
+| Github | [util-linux/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/u/util-linux/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install util-linux
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("util-linux")
+```
+
+
+### util-macros (macosx)
+
+
+| Description | *X.Org: Set of autoconf macros used to build other xorg packages* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.19.2 |
+| Github | [util-macros/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/u/util-macros/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install util-macros
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("util-macros")
+```
+
+
+
+## x
+### x264 (macosx)
+
+
+| Description | *A free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format.* |
+| -- | -- |
+| Homepage | [https://www.videolan.org/developers/x264.html](https://www.videolan.org/developers/x264.html) |
+| Versions | v2018.09.25 |
+| Github | [x264/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/x264/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install x264
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("x264")
+```
+
+
+### x265 (macosx)
+
+
+| Description | *A free software library and application for encoding video streams into the H.265/MPEG-H HEVC compression format.* |
+| -- | -- |
+| Homepage | [http://x265.org](http://x265.org) |
+| Versions | 2.9 |
+| Github | [x265/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/x265/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install x265
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("x265")
+```
+
+
+### xcb-proto (macosx)
+
+
+| Description | *X.Org: XML-XCB protocol descriptions for libxcb code generation* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.13 |
+| Github | [xcb-proto/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xcb-proto/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install xcb-proto
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xcb-proto")
+```
+
+
+### xorgproto (macosx)
+
+
+| Description | *X.Org: Protocol Headers* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 2019.2 |
+| Github | [xorgproto/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xorgproto/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install xorgproto
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xorgproto")
+```
+
+
+### xtrans (macosx)
+
+
+| Description | *X.Org: X Network Transport layer shared code* |
+| -- | -- |
+| Homepage | [https://www.x.org/](https://www.x.org/) |
+| Versions | 1.4.0 |
+| Github | [xtrans/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xtrans/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install xtrans
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xtrans")
+```
+
+
+### xz (macosx)
+
+
+| Description | *General-purpose data compression with high compression ratio.* |
+| -- | -- |
+| Homepage | [https://tukaani.org/xz/](https://tukaani.org/xz/) |
+| Versions | 5.2.4 |
+| Github | [xz/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xz/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install xz
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xz")
+```
+
+
+
+## y
+### yasm (macosx)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+
+## z
+### zeromq (macosx)
+
+
+| Description | *High-performance, asynchronous messaging library* |
+| -- | -- |
+| Homepage | [https://zeromq.org/](https://zeromq.org/) |
+| Versions | 4.3.2 |
+| Github | [zeromq/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zeromq/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install zeromq
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zeromq")
+```
+
+
+### zlib (macosx)
+
+
+| Description | *A Massively Spiffy Yet Delicately Unobtrusive Compression Library* |
+| -- | -- |
+| Homepage | [http://www.zlib.net](http://www.zlib.net) |
+| Versions | 1.2.10, 1.2.11 |
+| Github | [zlib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install zlib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zlib")
+```
+
+
+

+ 1110 - 0
packages/mingw.md

@@ -0,0 +1,1110 @@
+## a
+### autoconf (mingw)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (mingw)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (mingw)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+### box2d (mingw)
+
+
+| Description | *A 2D Physics Engine for Games* |
+| -- | -- |
+| Homepage | [https://box2d.org](https://box2d.org) |
+| Versions | 2.4.0 |
+| Github | [box2d/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/box2d/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] box2d
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("box2d")
+```
+
+
+
+## c
+### catch2 (mingw)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cmake (mingw)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### concurrentqueue (mingw)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (mingw)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (mingw)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (mingw)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## f
+### fmt (mingw)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+
+## g
+### glew (mingw)
+
+
+| Description | *A cross-platform open-source C/C++ extension loading library.* |
+| -- | -- |
+| Homepage | [http://glew.sourceforge.net/](http://glew.sourceforge.net/) |
+| Versions | 2.1.0 |
+| Github | [glew/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glew/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] glew
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glew")
+```
+
+
+### glfw (mingw)
+
+
+| Description | *GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development.* |
+| -- | -- |
+| Homepage | [https://www.glfw.org/](https://www.glfw.org/) |
+| Versions |  |
+| Github | [glfw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glfw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] glfw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glfw")
+```
+
+
+### gtest (mingw)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### imgui (mingw)
+
+
+| Description | *Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies* |
+| -- | -- |
+| Homepage | [https://github.com/ocornut/imgui](https://github.com/ocornut/imgui) |
+| Versions | v1.75, v1.79 |
+| Github | [imgui/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] imgui
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("imgui")
+```
+
+
+### inja (mingw)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (mingw)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## l
+### libjpeg (mingw)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libraw (mingw)
+
+
+| Description | *LibRaw is a library for reading RAW files from digital cameras.* |
+| -- | -- |
+| Homepage | [http://www.libraw.org](http://www.libraw.org) |
+| Versions | 0.19.5 |
+| Github | [libraw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libraw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libraw")
+```
+
+
+### libsdl (mingw)
+
+
+| Description | *Simple DirectMedia Layer* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/](https://www.libsdl.org/) |
+| Versions | 2.0.8 |
+| Github | [libsdl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libsdl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl")
+```
+
+
+### libsdl_image (mingw)
+
+
+| Description | *Simple DirectMedia Layer image loading library* |
+| -- | -- |
+| Homepage | [http://www.libsdl.org/projects/SDL_image/](http://www.libsdl.org/projects/SDL_image/) |
+| Versions | 2.0.5 |
+| Github | [libsdl_image/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_image/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libsdl_image
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_image")
+```
+
+
+### libsdl_mixer (mingw)
+
+
+| Description | *Simple DirectMedia Layer mixer audio library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_mixer/](https://www.libsdl.org/projects/SDL_mixer/) |
+| Versions | 2.0.4 |
+| Github | [libsdl_mixer/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_mixer/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libsdl_mixer
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_mixer")
+```
+
+
+### libsdl_net (mingw)
+
+
+| Description | *Simple DirectMedia Layer networking library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_net/](https://www.libsdl.org/projects/SDL_net/) |
+| Versions | 2.0.1 |
+| Github | [libsdl_net/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_net/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libsdl_net
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_net")
+```
+
+
+### libsdl_ttf (mingw)
+
+
+| Description | *Simple DirectMedia Layer text rendering library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_ttf/](https://www.libsdl.org/projects/SDL_ttf/) |
+| Versions | 2.0.15 |
+| Github | [libsdl_ttf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_ttf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libsdl_ttf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_ttf")
+```
+
+
+### libtool (mingw)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+### libuv (mingw)
+
+
+| Description | *A multi-platform support library with a focus on asynchronous I/O.* |
+| -- | -- |
+| Homepage | [http://libuv.org/](http://libuv.org/) |
+| Versions | v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0 |
+| Github | [libuv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] libuv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libuv")
+```
+
+
+
+## m
+### m4 (mingw)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (mingw)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### meson (mingw)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+
+## n
+### nasm (mingw)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ninja (mingw)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (mingw)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## p
+### patch (mingw)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pcre (mingw)
+
+
+| Description | *A Perl Compatible Regular Expressions Library* |
+| -- | -- |
+| Homepage | [https://www.pcre.org/](https://www.pcre.org/) |
+| Versions | 8.40, 8.41 |
+| Github | [pcre/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] pcre
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pcre")
+```
+
+
+### pcre2 (mingw)
+
+
+| Description | *A Perl Compatible Regular Expressions Library* |
+| -- | -- |
+| Homepage | [https://www.pcre.org/](https://www.pcre.org/) |
+| Versions | 10.30, 10.31, 10.23 |
+| Github | [pcre2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] pcre2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pcre2")
+```
+
+
+### pkg-config (mingw)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protoc (mingw)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (mingw)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (mingw)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (mingw)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## s
+### sfml (mingw)
+
+
+| Description | *Simple and Fast Multimedia Library* |
+| -- | -- |
+| Homepage | [https://www.sfml-dev.org](https://www.sfml-dev.org) |
+| Versions |  |
+| Github | [sfml/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sfml/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] sfml
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sfml")
+```
+
+
+### spdlog (mingw)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### stb (mingw)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (mingw)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tinyxml2 (mingw)
+
+
+| Description | *simple, small, efficient, C++ XML parser that can be easily integrating into other programs.* |
+| -- | -- |
+| Homepage | [http://www.grinninglizard.com/tinyxml2/](http://www.grinninglizard.com/tinyxml2/) |
+| Versions | 8.0.0 |
+| Github | [tinyxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] tinyxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tinyxml2")
+```
+
+
+### tmxparser (mingw)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## x
+### xz (mingw)
+
+
+| Description | *General-purpose data compression with high compression ratio.* |
+| -- | -- |
+| Homepage | [https://tukaani.org/xz/](https://tukaani.org/xz/) |
+| Versions | 5.2.4 |
+| Github | [xz/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/x/xz/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] xz
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("xz")
+```
+
+
+
+## y
+### yasm (mingw)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+
+## z
+### zlib (mingw)
+
+
+| Description | *A Massively Spiffy Yet Delicately Unobtrusive Compression Library* |
+| -- | -- |
+| Homepage | [http://www.zlib.net](http://www.zlib.net) |
+| Versions | 1.2.10, 1.2.11 |
+| Github | [zlib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install -p mingw [--mingw=/xxx] zlib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zlib")
+```
+
+
+

+ 754 - 0
packages/msys.md

@@ -0,0 +1,754 @@
+## a
+### autoconf (msys)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (msys)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (msys)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+
+## c
+### catch2 (msys)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cmake (msys)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### concurrentqueue (msys)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (msys)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (msys)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (msys)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## f
+### fmt (msys)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+
+## g
+### gtest (msys)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### inja (msys)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (msys)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## l
+### libjpeg (msys)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libtool (msys)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+### libxmake (msys)
+
+
+| Description | *The c/c++ bindings of the xmake core engine* |
+| -- | -- |
+| Homepage | [https://xmake.io](https://xmake.io) |
+| Versions | v2.3.3 |
+| Github | [libxmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxmake")
+```
+
+
+
+## m
+### m4 (msys)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (msys)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### meson (msys)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+
+## n
+### nasm (msys)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ninja (msys)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (msys)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## p
+### patch (msys)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pkg-config (msys)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protoc (msys)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (msys)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (msys)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (msys)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## s
+### spdlog (msys)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### stb (msys)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (msys)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tmxparser (msys)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## y
+### yasm (msys)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+

+ 1842 - 0
packages/windows.md

@@ -0,0 +1,1842 @@
+## a
+### abseil (windows)
+
+
+| Description | *C++ Common Libraries* |
+| -- | -- |
+| Homepage | [https://abseil.io](https://abseil.io) |
+| Versions | 20200225.1 |
+| Github | [abseil/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/abseil/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install abseil
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("abseil")
+```
+
+
+### assimp (windows)
+
+
+| Description | *Portable Open-Source library to import various well-known 3D model formats in a uniform manner* |
+| -- | -- |
+| Homepage | [https://assimp.org](https://assimp.org) |
+| Versions |  |
+| Github | [assimp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/assimp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install assimp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("assimp")
+```
+
+
+### autoconf (windows)
+
+
+| Description | *An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/autoconf/autoconf.html](https://www.gnu.org/software/autoconf/autoconf.html) |
+| Versions | 2.69, 2.68 |
+| Github | [autoconf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/autoconf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install autoconf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("autoconf")
+```
+
+
+### automake (windows)
+
+
+| Description | *A tool for automatically generating Makefile.in files compliant with the GNU Coding Standards.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/automake/](https://www.gnu.org/software/automake/) |
+| Versions | 1.9.5, 1.16.1, 1.9.6, 1.15.1 |
+| Github | [automake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/a/automake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install automake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("automake")
+```
+
+
+
+## b
+### bin2c (windows)
+
+
+| Description | *A simple utility for converting a binary file to a c application* |
+| -- | -- |
+| Homepage | [https://github.com/gwilymk/bin2c](https://github.com/gwilymk/bin2c) |
+| Versions | 0.0.1 |
+| Github | [bin2c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bin2c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bin2c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bin2c")
+```
+
+
+### boost (windows)
+
+
+| Description | *Collection of portable C++ source libraries.* |
+| -- | -- |
+| Homepage | [https://www.boost.org/](https://www.boost.org/) |
+| Versions | 1.72.0, 1.73.0, 1.70.0 |
+| Github | [boost/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/boost/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install boost
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("boost")
+```
+
+
+### box2d (windows)
+
+
+| Description | *A 2D Physics Engine for Games* |
+| -- | -- |
+| Homepage | [https://box2d.org](https://box2d.org) |
+| Versions | 2.4.0 |
+| Github | [box2d/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/box2d/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install box2d
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("box2d")
+```
+
+
+### bullet3 (windows)
+
+
+| Description | *Bullet Physics SDK.* |
+| -- | -- |
+| Homepage | [http://bulletphysics.org](http://bulletphysics.org) |
+| Versions | 3.05, 2.88 |
+| Github | [bullet3/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bullet3/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bullet3
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bullet3")
+```
+
+
+### bzip2 (windows)
+
+
+| Description | *Freely available high-quality data compressor.* |
+| -- | -- |
+| Homepage | [https://en.wikipedia.org/wiki/Bzip2](https://en.wikipedia.org/wiki/Bzip2) |
+| Versions | 1.0.6 |
+| Github | [bzip2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/b/bzip2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install bzip2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("bzip2")
+```
+
+
+
+## c
+### cairo (windows)
+
+
+| Description | *Vector graphics library with cross-device output support.* |
+| -- | -- |
+| Homepage | [https://cairographics.org/](https://cairographics.org/) |
+| Versions | 1.16.0 |
+| Github | [cairo/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cairo/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cairo
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cairo")
+```
+
+
+### catch2 (windows)
+
+
+| Description | *Catch2 is a multi-paradigm test framework for C++. which also supports Objective-C (and maybe C). * |
+| -- | -- |
+| Homepage | [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) |
+| Versions | 2.9.2 |
+| Github | [catch2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/catch2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install catch2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("catch2")
+```
+
+
+### cmake (windows)
+
+
+| Description | *A cross-platform family of tool designed to build, test and package software* |
+| -- | -- |
+| Homepage | [https://cmake.org](https://cmake.org) |
+| Versions | 3.11.4, 3.15.4 |
+| Github | [cmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cmake")
+```
+
+
+### co (windows)
+
+
+| Description | *Yet another libco and more.* |
+| -- | -- |
+| Homepage | [https://github.com/idealvin/co](https://github.com/idealvin/co) |
+| Versions |  |
+| Github | [co/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/co/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install co
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("co")
+```
+
+
+### concurrentqueue (windows)
+
+
+| Description | *An industrial-strength lock-free queue for C++.* |
+| -- | -- |
+| Homepage | [https://github.com/cameron314/concurrentqueue](https://github.com/cameron314/concurrentqueue) |
+| Versions |  |
+| Github | [concurrentqueue/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/concurrentqueue/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install concurrentqueue
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("concurrentqueue")
+```
+
+
+### cpp-taskflow (windows)
+
+
+| Description | *A fast C++ header-only library to help you quickly write parallel programs with complex task dependencies* |
+| -- | -- |
+| Homepage | [https://cpp-taskflow.github.io/](https://cpp-taskflow.github.io/) |
+| Versions | 2.2.0 |
+| Github | [cpp-taskflow/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cpp-taskflow/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cpp-taskflow
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cpp-taskflow")
+```
+
+
+### cxxopts (windows)
+
+
+| Description | *Lightweight C++ command line option parser* |
+| -- | -- |
+| Homepage | [https://github.com/jarro2783/cxxopts](https://github.com/jarro2783/cxxopts) |
+| Versions | v2.2.0 |
+| Github | [cxxopts/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cxxopts/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install cxxopts
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("cxxopts")
+```
+
+
+
+## d
+### doctest (windows)
+
+
+| Description | *The fastest feature-rich C++11/14/17/20 single-header testing framework for unit tests and TDD* |
+| -- | -- |
+| Homepage | [http://bit.ly/doctest-docs](http://bit.ly/doctest-docs) |
+| Versions | 2.3.6, 2.3.1 |
+| Github | [doctest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/d/doctest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install doctest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("doctest")
+```
+
+
+
+## e
+### eigen (windows)
+
+
+| Description | *C++ template library for linear algebra* |
+| -- | -- |
+| Homepage | [https://eigen.tuxfamily.org/](https://eigen.tuxfamily.org/) |
+| Versions | 3.3.8, 3.3.7 |
+| Github | [eigen/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/e/eigen/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install eigen
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("eigen")
+```
+
+
+### expat (windows)
+
+
+| Description | *XML 1.0 parser* |
+| -- | -- |
+| Homepage | [https://libexpat.github.io](https://libexpat.github.io) |
+| Versions | 2.2.6 |
+| Github | [expat/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/e/expat/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install expat
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("expat")
+```
+
+
+
+## f
+### fmt (windows)
+
+
+| Description | *fmt is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams.* |
+| -- | -- |
+| Homepage | [https://fmt.dev](https://fmt.dev) |
+| Versions | 6.2.0, 5.3.0, 6.0.0 |
+| Github | [fmt/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/fmt/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install fmt
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("fmt")
+```
+
+
+### freeglut (windows)
+
+
+| Description | *A free-software/open-source alternative to the OpenGL Utility Toolkit (GLUT) library.* |
+| -- | -- |
+| Homepage | [http://freeglut.sourceforge.net](http://freeglut.sourceforge.net) |
+| Versions | 3.0.0 |
+| Github | [freeglut/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freeglut/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install freeglut
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("freeglut")
+```
+
+
+### freetype (windows)
+
+
+| Description | *A freely available software library to render fonts.* |
+| -- | -- |
+| Homepage | [https://www.freetype.org](https://www.freetype.org) |
+| Versions | 2.9.1 |
+| Github | [freetype/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/f/freetype/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install freetype
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("freetype")
+```
+
+
+
+## g
+### glew (windows)
+
+
+| Description | *A cross-platform open-source C/C++ extension loading library.* |
+| -- | -- |
+| Homepage | [http://glew.sourceforge.net/](http://glew.sourceforge.net/) |
+| Versions | 2.1.0 |
+| Github | [glew/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glew/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install glew
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glew")
+```
+
+
+### glfw (windows)
+
+
+| Description | *GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan application development.* |
+| -- | -- |
+| Homepage | [https://www.glfw.org/](https://www.glfw.org/) |
+| Versions |  |
+| Github | [glfw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/glfw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install glfw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("glfw")
+```
+
+
+### go (windows)
+
+
+| Description | *The Go Programming Language* |
+| -- | -- |
+| Homepage | [https://golang.org/](https://golang.org/) |
+| Versions |  |
+| Github | [go/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/go/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install go
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("go")
+```
+
+
+### gtest (windows)
+
+
+| Description | *Google Testing and Mocking Framework.* |
+| -- | -- |
+| Homepage | [https://github.com/google/googletest](https://github.com/google/googletest) |
+| Versions | 1.8.1 |
+| Github | [gtest/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/g/gtest/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install gtest
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("gtest")
+```
+
+
+
+## i
+### imgui (windows)
+
+
+| Description | *Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies* |
+| -- | -- |
+| Homepage | [https://github.com/ocornut/imgui](https://github.com/ocornut/imgui) |
+| Versions | v1.75, v1.79 |
+| Github | [imgui/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/imgui/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install imgui
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("imgui")
+```
+
+
+### inja (windows)
+
+
+| Description | *A Template Engine for Modern C++* |
+| -- | -- |
+| Homepage | [https://pantor.github.io/inja/](https://pantor.github.io/inja/) |
+| Versions | v2.1.0 |
+| Github | [inja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/inja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install inja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("inja")
+```
+
+
+### irrXML (windows)
+
+
+| Description | *High speed and easy-to-use XML Parser for C++* |
+| -- | -- |
+| Homepage | [https://sourceforge.net/projects/irrlicht/](https://sourceforge.net/projects/irrlicht/) |
+| Versions | 1.2 |
+| Github | [irrXML/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/i/irrXML/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install irrXML
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("irrXML")
+```
+
+
+
+## l
+### libcurl (windows)
+
+
+| Description | *The multiprotocol file transfer library.* |
+| -- | -- |
+| Homepage | [https://curl.haxx.se/](https://curl.haxx.se/) |
+| Versions | 7.64.1 |
+| Github | [libcurl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libcurl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libcurl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libcurl")
+```
+
+
+### libjpeg (windows)
+
+
+| Description | *A widely used C library for reading and writing JPEG image files.* |
+| -- | -- |
+| Homepage | [http://ijg.org/](http://ijg.org/) |
+| Versions | v9c, v9b |
+| Github | [libjpeg/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libjpeg/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libjpeg
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libjpeg")
+```
+
+
+### libpng (windows)
+
+
+| Description | *The official PNG reference library* |
+| -- | -- |
+| Homepage | [http://www.libpng.org/pub/png/libpng.html](http://www.libpng.org/pub/png/libpng.html) |
+| Versions | v1.6.36, v1.6.35, v1.6.34 |
+| Github | [libpng/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libpng/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libpng
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libpng")
+```
+
+
+### libraw (windows)
+
+
+| Description | *LibRaw is a library for reading RAW files from digital cameras.* |
+| -- | -- |
+| Homepage | [http://www.libraw.org](http://www.libraw.org) |
+| Versions | 0.19.5 |
+| Github | [libraw/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libraw/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libraw
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libraw")
+```
+
+
+### libsdl (windows)
+
+
+| Description | *Simple DirectMedia Layer* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/](https://www.libsdl.org/) |
+| Versions | 2.0.8 |
+| Github | [libsdl/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl")
+```
+
+
+### libsdl_gfx (windows)
+
+
+| Description | *Simple DirectMedia Layer primitives drawing library* |
+| -- | -- |
+| Homepage | [https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/](https://www.ferzkopp.net/wordpress/2016/01/02/sdl_gfx-sdl2_gfx/) |
+| Versions |  |
+| Github | [libsdl_gfx/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_gfx/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_gfx
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_gfx")
+```
+
+
+### libsdl_image (windows)
+
+
+| Description | *Simple DirectMedia Layer image loading library* |
+| -- | -- |
+| Homepage | [http://www.libsdl.org/projects/SDL_image/](http://www.libsdl.org/projects/SDL_image/) |
+| Versions | 2.0.5 |
+| Github | [libsdl_image/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_image/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_image
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_image")
+```
+
+
+### libsdl_mixer (windows)
+
+
+| Description | *Simple DirectMedia Layer mixer audio library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_mixer/](https://www.libsdl.org/projects/SDL_mixer/) |
+| Versions | 2.0.4 |
+| Github | [libsdl_mixer/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_mixer/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_mixer
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_mixer")
+```
+
+
+### libsdl_net (windows)
+
+
+| Description | *Simple DirectMedia Layer networking library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_net/](https://www.libsdl.org/projects/SDL_net/) |
+| Versions | 2.0.1 |
+| Github | [libsdl_net/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_net/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_net
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_net")
+```
+
+
+### libsdl_ttf (windows)
+
+
+| Description | *Simple DirectMedia Layer text rendering library* |
+| -- | -- |
+| Homepage | [https://www.libsdl.org/projects/SDL_ttf/](https://www.libsdl.org/projects/SDL_ttf/) |
+| Versions | 2.0.15 |
+| Github | [libsdl_ttf/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libsdl_ttf/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libsdl_ttf
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libsdl_ttf")
+```
+
+
+### libtiff (windows)
+
+
+| Description | *TIFF Library and Utilities.* |
+| -- | -- |
+| Homepage | [http://www.simplesystems.org/libtiff/](http://www.simplesystems.org/libtiff/) |
+| Versions | 4.1.0 |
+| Github | [libtiff/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtiff/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtiff
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtiff")
+```
+
+
+### libtool (windows)
+
+
+| Description | *A generic library support script.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/libtool/](https://www.gnu.org/software/libtool/) |
+| Versions | 2.4.5, 2.4.6 |
+| Github | [libtool/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libtool/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libtool
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libtool")
+```
+
+
+### libuv (windows)
+
+
+| Description | *A multi-platform support library with a focus on asynchronous I/O.* |
+| -- | -- |
+| Homepage | [http://libuv.org/](http://libuv.org/) |
+| Versions | v1.24.0, v1.23.2, v1.23.1, v1.28.0, v1.27.0, v1.26.0, v1.25.0, v1.22.0, v1.24.1, v1.23.0 |
+| Github | [libuv/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libuv/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libuv
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libuv")
+```
+
+
+### libwebsockets (windows)
+
+
+| Description | *canonical libwebsockets.org websocket library* |
+| -- | -- |
+| Homepage | [https://github.com/warmcat/libwebsockets](https://github.com/warmcat/libwebsockets) |
+| Versions | v3.2.0 |
+| Github | [libwebsockets/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libwebsockets/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libwebsockets
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libwebsockets")
+```
+
+
+### libxmake (windows)
+
+
+| Description | *The c/c++ bindings of the xmake core engine* |
+| -- | -- |
+| Homepage | [https://xmake.io](https://xmake.io) |
+| Versions | v2.3.3 |
+| Github | [libxmake/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxmake/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxmake
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxmake")
+```
+
+
+### libxml2 (windows)
+
+
+| Description | *The XML C parser and toolkit of Gnome.* |
+| -- | -- |
+| Homepage | [http://xmlsoft.org/](http://xmlsoft.org/) |
+| Versions | 2.9.9 |
+| Github | [libxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/libxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install libxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("libxml2")
+```
+
+
+### lief (windows)
+
+
+| Description | *Library to Instrument Executable Formats.* |
+| -- | -- |
+| Homepage | [https://lief.quarkslab.com](https://lief.quarkslab.com) |
+| Versions | 0.10.1 |
+| Github | [lief/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lief/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install lief
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("lief")
+```
+
+
+### lua (windows)
+
+
+| Description | *A powerful, efficient, lightweight, embeddable scripting language.* |
+| -- | -- |
+| Homepage | [http://lua.org](http://lua.org) |
+| Versions | 5.3.5, 5.1.5, 5.2.4 |
+| Github | [lua/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/lua/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install lua
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("lua")
+```
+
+
+### luajit (windows)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [http://luajit.org](http://luajit.org) |
+| Versions | 2.1.0-beta3 |
+| Github | [luajit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/l/luajit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install luajit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("luajit")
+```
+
+
+
+## m
+### m4 (windows)
+
+
+| Description | *Macro processing language* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/m4](https://www.gnu.org/software/m4) |
+| Versions | 1.4.18 |
+| Github | [m4/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/m4/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install m4
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("m4")
+```
+
+
+### make (windows)
+
+
+| Description | *GNU make tool.* |
+| -- | -- |
+| Homepage | [https://www.gnu.org/software/make/](https://www.gnu.org/software/make/) |
+| Versions | 4.2.1 |
+| Github | [make/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/make/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install make
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("make")
+```
+
+
+### meson (windows)
+
+
+| Description | *Fast and user friendly build system.* |
+| -- | -- |
+| Homepage | [https://mesonbuild.com/](https://mesonbuild.com/) |
+| Versions | 0.50.1 |
+| Github | [meson/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/meson/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install meson
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("meson")
+```
+
+
+### moonjit (windows)
+
+
+| Description | *A Just-In-Time Compiler (JIT) for the Lua programming language.* |
+| -- | -- |
+| Homepage | [https://github.com/moonjit/moonjit](https://github.com/moonjit/moonjit) |
+| Versions | 2.2.0 |
+| Github | [moonjit/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/m/moonjit/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install moonjit
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("moonjit")
+```
+
+
+
+## n
+### nana (windows)
+
+
+| Description | *A modern C++ GUI library.* |
+| -- | -- |
+| Homepage | [http://nanapro.org](http://nanapro.org) |
+| Versions | 1.7.2, 1.7.4, 1.6.2 |
+| Github | [nana/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nana/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nana
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nana")
+```
+
+
+### nasm (windows)
+
+
+| Description | *Netwide Assembler (NASM) is an 80x86 assembler.* |
+| -- | -- |
+| Homepage | [https://www.nasm.us/](https://www.nasm.us/) |
+| Versions | 2.13.03 |
+| Github | [nasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nasm")
+```
+
+
+### ninja (windows)
+
+
+| Description | *Small build system for use with gyp or CMake.* |
+| -- | -- |
+| Homepage | [https://ninja-build.org/](https://ninja-build.org/) |
+| Versions | 1.9.0 |
+| Github | [ninja/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/ninja/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install ninja
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("ninja")
+```
+
+
+### nlohmann_json (windows)
+
+
+| Description | *JSON for Modern C++* |
+| -- | -- |
+| Homepage | [https://nlohmann.github.io/json/](https://nlohmann.github.io/json/) |
+| Versions | v3.9.1 |
+| Github | [nlohmann_json/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/n/nlohmann_json/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install nlohmann_json
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("nlohmann_json")
+```
+
+
+
+## o
+### oatpp (windows)
+
+
+| Description | *Modern Web Framework for C++. High performance, simple API, cross platform, zero dependency.* |
+| -- | -- |
+| Homepage | [https://oatpp.io/](https://oatpp.io/) |
+| Versions | 1.0.0 |
+| Github | [oatpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/o/oatpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install oatpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("oatpp")
+```
+
+
+
+## p
+### patch (windows)
+
+
+| Description | *GNU patch, which applies diff files to original files.* |
+| -- | -- |
+| Homepage | [http://www.gnu.org/software/patch/patch.html](http://www.gnu.org/software/patch/patch.html) |
+| Versions | 2.7.6 |
+| Github | [patch/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/patch/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install patch
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("patch")
+```
+
+
+### pcre (windows)
+
+
+| Description | *A Perl Compatible Regular Expressions Library* |
+| -- | -- |
+| Homepage | [https://www.pcre.org/](https://www.pcre.org/) |
+| Versions | 8.40, 8.41 |
+| Github | [pcre/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pcre
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pcre")
+```
+
+
+### pcre2 (windows)
+
+
+| Description | *A Perl Compatible Regular Expressions Library* |
+| -- | -- |
+| Homepage | [https://www.pcre.org/](https://www.pcre.org/) |
+| Versions | 10.30, 10.31, 10.23 |
+| Github | [pcre2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pcre2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pcre2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pcre2")
+```
+
+
+### pixman (windows)
+
+
+| Description | *Low-level library for pixel manipulation.* |
+| -- | -- |
+| Homepage | [https://cairographics.org/](https://cairographics.org/) |
+| Versions | 0.38.0 |
+| Github | [pixman/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pixman/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pixman
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pixman")
+```
+
+
+### pkg-config (windows)
+
+
+| Description | *A helper tool used when compiling applications and libraries.* |
+| -- | -- |
+| Homepage | [https://freedesktop.org/wiki/Software/pkg-config/](https://freedesktop.org/wiki/Software/pkg-config/) |
+| Versions | 0.29.2 |
+| Github | [pkg-config/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pkg-config/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pkg-config
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pkg-config")
+```
+
+
+### protobuf-c (windows)
+
+
+| Description | *Google's data interchange format for c* |
+| -- | -- |
+| Homepage | [https://github.com/protobuf-c/protobuf-c](https://github.com/protobuf-c/protobuf-c) |
+| Versions | 1.3.1 |
+| Github | [protobuf-c/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-c/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protobuf-c
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protobuf-c")
+```
+
+
+### protobuf-cpp (windows)
+
+
+| Description | *Google's data interchange format for cpp* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0, 3.12.3 |
+| Github | [protobuf-cpp/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protobuf-cpp/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protobuf-cpp
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protobuf-cpp")
+```
+
+
+### protoc (windows)
+
+
+| Description | *Google's data interchange format compiler* |
+| -- | -- |
+| Homepage | [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) |
+| Versions | 3.8.0 |
+| Github | [protoc/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/protoc/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install protoc
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("protoc")
+```
+
+
+### pybind11 (windows)
+
+
+| Description | *Seamless operability between C++11 and Python.* |
+| -- | -- |
+| Homepage | [https://github.com/pybind/pybind11](https://github.com/pybind/pybind11) |
+| Versions | 2.5.0 |
+| Github | [pybind11/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/pybind11/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install pybind11
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("pybind11")
+```
+
+
+### python (windows)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 3.7.0, 2.7.15 |
+| Github | [python/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python")
+```
+
+
+### python2 (windows)
+
+
+| Description | *The python programming language.* |
+| -- | -- |
+| Homepage | [https://www.python.org/](https://www.python.org/) |
+| Versions | 2.7.15 |
+| Github | [python2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/p/python2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install python2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("python2")
+```
+
+
+
+## r
+### raylib (windows)
+
+
+| Description | *A simple and easy-to-use library to enjoy videogames programming.* |
+| -- | -- |
+| Homepage | [http://www.raylib.com](http://www.raylib.com) |
+| Versions | 2.5.0, 3.0.0 |
+| Github | [raylib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/r/raylib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install raylib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("raylib")
+```
+
+
+
+## s
+### sfml (windows)
+
+
+| Description | *Simple and Fast Multimedia Library* |
+| -- | -- |
+| Homepage | [https://www.sfml-dev.org](https://www.sfml-dev.org) |
+| Versions |  |
+| Github | [sfml/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sfml/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sfml
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sfml")
+```
+
+
+### skia (windows)
+
+
+| Description | *A complete 2D graphic library for drawing Text, Geometries, and Images.* |
+| -- | -- |
+| Homepage | [https://skia.org/](https://skia.org/) |
+| Versions | 68046c |
+| Github | [skia/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/skia/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install skia
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("skia")
+```
+
+
+### sol2 (windows)
+
+
+| Description | *A C++ library binding to Lua.* |
+| -- | -- |
+| Homepage | [https://github.com/ThePhD/sol2](https://github.com/ThePhD/sol2) |
+| Versions | v3.2.1 |
+| Github | [sol2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sol2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sol2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sol2")
+```
+
+
+### spdlog (windows)
+
+
+| Description | *Fast C++ logging library.* |
+| -- | -- |
+| Homepage | [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) |
+| Versions | 1.3.1, 1.5.0, 1.8.0, 1.4.2 |
+| Github | [spdlog/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/spdlog/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install spdlog
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("spdlog")
+```
+
+
+### sqlite3 (windows)
+
+
+| Description | *The most used database engine in the world* |
+| -- | -- |
+| Homepage | [https://sqlite.org/](https://sqlite.org/) |
+| Versions | 3.24.0, 3.23.0 |
+| Github | [sqlite3/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/sqlite3/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install sqlite3
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("sqlite3")
+```
+
+
+### stb (windows)
+
+
+| Description | *single-file public domain (or MIT licensed) libraries for C/C++* |
+| -- | -- |
+| Homepage | [https://github.com/nothings/stb](https://github.com/nothings/stb) |
+| Versions | 0.0 |
+| Github | [stb/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/s/stb/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install stb
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("stb")
+```
+
+
+
+## t
+### tbox (windows)
+
+
+| Description | *A glib-like multi-platform c library* |
+| -- | -- |
+| Homepage | [http://www.tboox.org](http://www.tboox.org) |
+| Versions | v1.6.2, v1.6.5, v1.6.3, v1.6.4 |
+| Github | [tbox/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tbox/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tbox
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tbox")
+```
+
+
+### tinyxml2 (windows)
+
+
+| Description | *simple, small, efficient, C++ XML parser that can be easily integrating into other programs.* |
+| -- | -- |
+| Homepage | [http://www.grinninglizard.com/tinyxml2/](http://www.grinninglizard.com/tinyxml2/) |
+| Versions | 8.0.0 |
+| Github | [tinyxml2/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tinyxml2/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tinyxml2
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tinyxml2")
+```
+
+
+### tmxparser (windows)
+
+
+| Description | *C++11 library for parsing the maps generated by Tiled Map Editor* |
+| -- | -- |
+| Homepage | [https://github.com/sainteos/tmxparser](https://github.com/sainteos/tmxparser) |
+| Versions | 2.2.0 |
+| Github | [tmxparser/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/t/tmxparser/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install tmxparser
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("tmxparser")
+```
+
+
+
+## u
+### unqlite (windows)
+
+
+| Description | *An Embedded NoSQL, Transactional Database Engine.* |
+| -- | -- |
+| Homepage | [https://unqlite.org](https://unqlite.org) |
+| Versions | 1.1.9 |
+| Github | [unqlite/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/u/unqlite/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install unqlite
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("unqlite")
+```
+
+
+
+## y
+### yasm (windows)
+
+
+| Description | *Modular BSD reimplementation of NASM.* |
+| -- | -- |
+| Homepage | [https://yasm.tortall.net/](https://yasm.tortall.net/) |
+| Versions | 1.3.0 |
+| Github | [yasm/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/y/yasm/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install yasm
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("yasm")
+```
+
+
+
+## z
+### zeromq (windows)
+
+
+| Description | *High-performance, asynchronous messaging library* |
+| -- | -- |
+| Homepage | [https://zeromq.org/](https://zeromq.org/) |
+| Versions | 4.3.2 |
+| Github | [zeromq/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zeromq/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install zeromq
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zeromq")
+```
+
+
+### zlib (windows)
+
+
+| Description | *A Massively Spiffy Yet Delicately Unobtrusive Compression Library* |
+| -- | -- |
+| Homepage | [http://www.zlib.net](http://www.zlib.net) |
+| Versions | 1.2.10, 1.2.11 |
+| Github | [zlib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/master/packages/z/zlib/xmake.lua) |
+
+##### Install command
+
+```console
+xrepo install zlib
+```
+
+##### Integration in the project (xmake.lua)
+
+```lua
+add_requires("zlib")
+```
+
+
+

+ 73 - 0
sitemap.xml

@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<urlset
+      xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
+      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
+            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
+    
+<url>
+  <loc>https://xrepo.xmake.io</loc>
+  <lastmod>2020-10-30T23:43:07+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/index.html</loc>
+  <lastmod>2020-10-30T23:54:06+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/zh-cn/getting_started.html</loc>
+  <lastmod>2020-10-30T23:54:06+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/getting_started.html</loc>
+  <lastmod>2020-10-30T23:54:06+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/msys.html</loc>
+  <lastmod>2020-10-30T23:54:06+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/macosx.html</loc>
+  <lastmod>2020-10-30T23:54:06+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/android.html</loc>
+  <lastmod>2020-10-30T23:54:07+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/windows.html</loc>
+  <lastmod>2020-10-30T23:54:07+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/bsd.html</loc>
+  <lastmod>2020-10-30T23:54:07+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/linux.html</loc>
+  <lastmod>2020-10-30T23:54:07+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/cross.html</loc>
+  <lastmod>2020-10-30T23:54:07+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/mingw.html</loc>
+  <lastmod>2020-10-30T23:54:07+08:00</lastmod>
+</url>
+
+<url>
+  <loc>https://xrepo.xmake.io/mirror/packages/iphoneos.html</loc>
+  <lastmod>2020-10-30T23:54:08+08:00</lastmod>
+</url>
+
+</urlset>

+ 0 - 5
zh-cn/_sidebar.md

@@ -1,5 +0,0 @@
-- 包列表
-
-  - [a](packages/a.md)
-
-