package An official xmake package repository https://xrepo.xmake.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
6.5 KiB

6 years ago
<div align="center">
<a href="https://xmake.io">
<img width="200" heigth="200" src="https://tboox.org/static/img/xmake/logo256c.png">
</a>
6 years ago
<h1>xmake-repo</h1>
<div>
5 years ago
<a href="https://github.com/xmake-io/xmake-repo/actions?query=workflow%3ALinux">
<img src="https://img.shields.io/github/workflow/status/xmake-io/xmake-repo/Linux/dev.svg?style=flat-square&logo=linux" alt="github-ci" />
6 years ago
</a>
5 years ago
<a href="https://github.com/xmake-io/xmake-repo/actions?query=workflow%3AmacOS">
<img src="https://img.shields.io/github/workflow/status/xmake-io/xmake-repo/macOS/dev.svg?style=flat-square&logo=apple" alt="github-ci" />
6 years ago
</a>
5 years ago
<a href="https://github.com/xmake-io/xmake-repo/actions?query=workflow%3AWindows">
<img src="https://img.shields.io/github/workflow/status/xmake-io/xmake-repo/Windows/dev.svg?style=flat-square&logo=windows" alt="github-ci" />
</a>
<a href="https://github.com/xmake-io/xmake-repo/actions?query=workflow%3AAndroid">
<img src="https://img.shields.io/github/workflow/status/xmake-io/xmake-repo/Android/dev.svg?style=flat-square&logo=android" alt="github-ci" />
6 years ago
</a>
</div>
<div>
<a href="https://www.reddit.com/r/tboox/">
<img src="https://img.shields.io/badge/chat-on%20reddit-ff3f34.svg?style=flat-square" alt="Reddit" />
</a>
<a href="https://gitter.im/tboox/tboox?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge">
<img src="https://img.shields.io/gitter/room/tboox/tboox.svg?style=flat-square&colorB=96c312" alt="Gitter" />
</a>
<a href="https://t.me/tbooxorg">
<img src="https://img.shields.io/badge/chat-on%20telegram-blue.svg?style=flat-square" alt="Telegram" />
</a>
<a href="https://jq.qq.com/?_wv=1027&k=5hpwWFv">
<img src="https://img.shields.io/badge/chat-on%20QQ-ff69b4.svg?style=flat-square" alt="QQ" />
</a>
5 years ago
<a href="https://github.com/xmake-io/xmake-repo/blob/master/LICENSE.md">
<img src="https://img.shields.io/github/license/xmake-io/xmake-repo.svg?colorB=f48041&style=flat-square" alt="license" />
</a>
6 years ago
<a href="http://xmake.io/pages/donation.html#donate">
<img src="https://img.shields.io/badge/donate-us-orange.svg?style=flat-square" alt="Donate" />
</a>
</div>
<p>一个官方的xmake包管理仓库</p>
</div>
## 简介
6 years ago
xmake-repo是一个官方的xmake包管理仓库,收录了常用的c/c++开发包,提供跨平台支持。
6 years ago
## 包依赖描述
6 years ago
<img src="https://xmake.io/assets/img/index/add_require.png" width="70%" />
6 years ago
## 包依赖管理
6 years ago
<img src="https://xmake.io/assets/img/index/package_manage.png" width="80%" />
如果你想要了解更多,请参考:
6 years ago
* [在线文档](https://xmake.io/#/zh/)
* [在线源码](https://github.com/xmake-io/xmake)
6 years ago
* [项目主页](https://xmake.io/cn)
6 years ago
## 提交一个新包到仓库
在`packages/x/xxx/xmake.lua`中写个关于新包的xmake.lua描述,然后提交一个pull-request到dev分支。
例如:[packages/z/zlib/xmake.lua](https://github.com/xmake-io/xmake-repo/blob/dev/packages/z/zlib/xmake.lua):
5 years ago
关于如何制作包的更详细描述,请参看文档:[制作和提交到官方仓库](https://xmake.io/#/zh-cn/package/remote_package?id=%e6%b7%bb%e5%8a%a0%e5%8c%85%e5%88%b0%e4%bb%93%e5%ba%93)
6 years ago
```lua
package("zlib")
set_homepage("http://www.zlib.net")
set_description("A Massively Spiffy Yet Delicately Unobtrusive Compression Library")
set_urls("http://zlib.net/zlib-$(version).tar.gz",
"https://downloads.sourceforge.net/project/libpng/zlib/$(version)/zlib-$(version).tar.gz")
add_versions("1.2.10", "8d7e9f698ce48787b6e1c67e6bff79e487303e66077e25cb9784ac8835978017")
add_versions("1.2.11", "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1")
on_install("windows", function (package)
io.gsub("win32/Makefile.msc", "%-MD", "-" .. package:config("vs_runtime"))
os.vrun("nmake -f win32\\Makefile.msc zlib.lib")
os.cp("zlib.lib", package:installdir("lib"))
os.cp("*.h", package:installdir("include"))
end)
on_install("linux", "macosx", function (package)
import("package.tools.autoconf").install(package, {"--static"})
end)
on_install("iphoneos", "android@linux,macosx", "mingw@linux,macosx", function (package)
import("package.tools.autoconf").configure(package, {host = "", "--static"})
io.gsub("Makefile", "\nAR=.-\n", "\nAR=" .. (package:build_getenv("ar") or "") .. "\n")
io.gsub("Makefile", "\nARFLAGS=.-\n", "\nARFLAGS=cr\n")
io.gsub("Makefile", "\nRANLIB=.-\n", "\nRANLIB=\n")
os.vrun("make install -j4")
end)
on_test(function (package)
assert(package:has_cfuncs("inflate", {includes = "zlib.h"}))
end)
```
6 years ago
## 被支持的包列表
|linux|windows|mingw|iphoneos|macosx|android|
|-----|-------|-----|--------|------|-------|
|boost|boost|catch2|catch2|autoconf|catch2||
5 years ago
|bullet3|bzip2|concurrentqueue|cjson|automake|cjson||
|bzip2|cairo|cpp-taskflow|concurrentqueue|boost|concurrentqueue||
|cairo|catch2|doctest|cpp-taskflow|bullet3|cpp-taskflow||
|catch2|concurrentqueue|fmt|doctest|bzip2|doctest||
|cjson|cpp-taskflow|gtest|fmt|cairo|ffmpeg||
|concurrentqueue|doctest|imgui|gtest|catch2|fmt||
|cpp-taskflow|expat|inja|imgui|cjson|gtest||
|doctest|fmt|libjpeg|inja|cmake|imgui||
|expat|freeglut|libsdl|json-c|concurrentqueue|inja||
|ffmpeg|freetype|nlohmann_json|libcurl|cpp-taskflow|json-c||
|fmt|glew|pcre|libev|doctest|libjpeg||
|fontconfig|go|pcre2|libffi|expat|libpng||
|freeglut|gtest|spdlog|libjpeg|ffmpeg|libuv||
|freetype|imgui|tbox|libpng|fmt|libxml2||
|gettext|inja|xz|libuv|fontconfig|lua||
|glew|libcurl|zlib|libxml2|freetype|nlohmann_json||
|glib|libjpeg||nlohmann_json|gettext|spdlog||
|go|libpng||spdlog|glew|tbox||
|gperf|libsdl||tbox|glib|zlib||
|gtest|libtiff||zlib|go|||
|icu4c|libuv|||gperf|||
|imgui|libwebsockets|||gtest|||
|inja|lua|||icu4c|||
|json-c|luajit|||imgui|||
|libcurl|nana|||inja|||
|libev|nlohmann_json|||json-c|||
|libffi|oatpp|||libcurl|||
|libiconv|pcre|||libev|||
|libjpeg|pixman|||libffi|||
|libmill|protobuf-c|||libiconv|||
|libpng|protobuf-cpp|||libjpeg|||
|libsdl|raylib|||libmill|||
|libtask|skia|||libpng|||
|libtiff|spdlog|||libsdl|||
|libusb|sqlite3|||libtask|||
|libuv|tbox|||libtiff|||
|libwebsockets|unqlite|||libtool|||
|libxml2|zeromq|||libusb|||
6 years ago
这里只显示了部分包,如果你想看所有包列表,可以看下:[PKGLIST.md](https://github.com/xmake-io/xmake-repo/blob/master/PKGLIST.md)
6 years ago
我们也非常欢迎大家能够贡献一些进来。🙏