-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Create build.sh #27037
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
base: master
Are you sure you want to change the base?
Create build.sh #27037
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| TERMUX_PKG_HOMEPAGE=https://vlang.io/ | ||
| TERMUX_PKG_DESCRIPTION="V programming language compiler" | ||
| TERMUX_PKG_LICENSE="MIT" | ||
| TERMUX_PKG_MAINTAINER="@termux" | ||
| TERMUX_PKG_VERSION=0.4.12 | ||
| TERMUX_PKG_SRCURL=https://github.com/vlang/v/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz | ||
| TERMUX_PKG_SHA256=65e3579df61ae0a7314aa5f0c7eb3b0b9b45170a0275e392e9c168be23046e89 | ||
| TERMUX_PKG_DEPENDS="build-essential, clang, make, libgc-dev, libexecinfo-dev, libatomic1" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These depends don't make any sense and don't match dependencies for any other package of
|
||
| TERMUX_PKG_BUILD_IN_SRC=true | ||
|
|
||
| termux_step_make_install() { | ||
| install -Dm700 v "$TERMUX_PREFIX/bin/v" | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.
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.
I didn't even notice this until I looked at the CI checks, this file is not in the correct location.
It should be at
packages/vlang/build.sh.At which the CI is instantly going to throw a failure due to the non-existent
*-dev,libatomic1andlibexecinfodependencies.