Skip to content
Snippets Groups Projects
Unverified Commit 24d3c70a authored by Ian Douglas Scott's avatar Ian Douglas Scott
Browse files

Initial recipe for cargo

parent 3ddf6b8a
No related branches found
No related tags found
1 merge request!30Initial recipe for cargo
GIT=https://github.com/ids1024/cargo.git
BRANCH=redox
function recipe_build {
if [ -d openssl-redox ]
then
git -C openssl-redox pull
else
git clone https://github.com/ids1024/openssl.git -b redox --depth 1 openssl-redox
fi
rm -rf openssl-prefix
mkdir openssl-prefix
pushd openssl-redox
./Configure no-shared no-dgram redox-x86_64 --prefix="$PWD/../openssl-prefix"
make -j"$(nproc)"
make install
popd
export OPENSSL_DIR=$PWD/openssl-prefix
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment