Question regarding pre compiled packages license #21085
-
I need to ship cargo (rust package manager) with my app, cargo is licensed under MIT and, I know that your build script of cargo is licensed under MIT, but I am not sure about the license of pre compiled binaries that I can download from packages.termux.dev First of all I know that it has /data/data/com.termux/files as the run path So I used patchelf utility to replace it with my application id. It work great. My question is: ((The reason I can't compile cargo and rust from the beginning for my app is that I have very bad and limited internet so I can't download the whole llvm project)) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Every package available on Termux contains its applicable license files. termux-packages/packages/libmd/build.sh Lines 3 to 4 in 1eb74d0 Licenses are generally divided into 2 categories, "generic" and "specific".
All licenses are placed in: That would be
|
Beta Was this translation helpful? Give feedback.
Every package available on Termux contains its applicable license files.
You can find the license identifiers as part of the package
build.sh
file.e.g.
termux-packages/packages/cargo-c/build.sh
Line 3 in 1eb74d0
termux-packages/x11-packages/gtkwave/build.sh
Line 3 in 1eb74d0
termux-packages/packages/libmd/build.sh
Lines 3 to 4 in 1eb74d0
Licenses are generally divided into 2 categories, "generic" and "specific".
"Generic" licenses are symlinked in from a single copy containe…