From a13495e4155267bb59b495c8e62816b542653d0d Mon Sep 17 00:00:00 2001
From: Ian Douglas Scott <ian@iandouglasscott.com>
Date: Fri, 23 Jun 2017 18:16:40 -0700
Subject: [PATCH] Recipe for curl

---
 recipes/curl/recipe.sh | 55 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)
 create mode 100644 recipes/curl/recipe.sh

diff --git a/recipes/curl/recipe.sh b/recipes/curl/recipe.sh
new file mode 100644
index 000000000..ad96990c2
--- /dev/null
+++ b/recipes/curl/recipe.sh
@@ -0,0 +1,55 @@
+GIT=https://github.com/ids1024/curl.git
+BRANCH=redox
+
+HOST=x86_64-elf-redox
+
+function recipe_version {
+    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
+    skip=1
+}
+
+function recipe_update {
+    echo "skipping update"
+    skip=1
+}
+
+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="/"
+	make -j"$(nproc)"
+	make DESTDIR="$PWD/../openssl-prefix" install
+    popd
+
+    rm -rf openssl-prefix/lib/pkgconfig # pkg-config returns paths based on / prefix, breaking cross compile
+
+    ./configure --prefix=/ --host=${HOST} --disable-tftp --disable-ftp --disable-ntlm-wb --with-ssl="$PWD/openssl-prefix" --with-ca-path=/ssl/certs
+    make
+
+    skip=1
+}
+
+function recipe_test {
+    echo "skipping test"
+    skip=1
+}
+
+function recipe_clean {
+    make clean
+    skip=1
+}
+
+function recipe_stage {
+    mkdir "$1/bin"
+    cp src/curl "$1/bin"
+    skip=1
+}
-- 
GitLab