-
-
Notifications
You must be signed in to change notification settings - Fork 416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
libhybris: add package #5460
base: dev
Are you sure you want to change the base?
libhybris: add package #5460
Conversation
packages/l/libhybris/xmake.lua
Outdated
add_urls("https://github.com/libhybris/libhybris.git") | ||
add_versions("2024.09.01", "936279916605003fba95a0f3629a6bc5e6caa343") | ||
|
||
add_deps("autoconf", "automake", "libtool", "pkgconf", "ndk") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove ndk deps
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename pkgconf to pkg-config
packages/l/libhybris/xmake.lua
Outdated
local ndk_version = package:dep("ndk"):version() | ||
local ndk_version_major = ndk_version:major() or 0 | ||
local ndk_version_minor = ndk_version:minor() or 0 | ||
local ndk_version_patch = ndk_version:patch() or 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see
xmake-repo/packages/p/pcre2/xmake.lua
Line 26 in 6ce7aef
local ndkver = ndk:config("ndkver") |
|
||
add_deps("autoconf", "automake", "libtool", "pkgconf", "ndk") | ||
|
||
on_install("linux", function (package) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you are using ndk to build android program, please use android
platform, not linux
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This package is similar to dyncall and allows linux to use android .so files
No description provided.