From b1b42b10115d45802eac2f4470e2062728d14aeb Mon Sep 17 00:00:00 2001 From: Philippe PITTOLI Date: Sun, 25 Aug 2019 15:47:34 +0200 Subject: [PATCH] curl recipe (includes both the tool and the library). --- curl/recipe.spec | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 curl/recipe.spec diff --git a/curl/recipe.spec b/curl/recipe.spec new file mode 100644 index 0000000..f5f8db6 --- /dev/null +++ b/curl/recipe.spec @@ -0,0 +1,20 @@ +name: curl +version: 7.65.3 +release: 1 +sources: https://curl.haxx.se/download/curl-%{version}.tar.gz +build-dependencies: make, openssl-dev + +dirname: %{name}-%{version} +@configure + cd %{dirname} + ./configure \ + --enable-ipv6 \ + --enable-unix-sockets \ + --enable-static \ + --enable-openssl \ + --without-libidn \ + --without-libidn2 \ + --with-nghttp2 \ + --disable-ldap \ + --with-pic \ + --without-libssh2 # https://bugs.alpinelinux.org/issues/10222