From 4e1a6f1b3c543b9fbeb882a9e97551f7c58ca65a Mon Sep 17 00:00:00 2001 From: dzwdz Date: Mon, 25 Dec 2023 18:36:02 +0100 Subject: ports: curl :^) had to do a lot of hacky stuff, but it's there. worked on this on and off for a while now --- ports/curl/port | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 ports/curl/port (limited to 'ports/curl/port') diff --git a/ports/curl/port b/ports/curl/port new file mode 100755 index 0000000..befd017 --- /dev/null +++ b/ports/curl/port @@ -0,0 +1,22 @@ +#!/bin/sh +. ports/pre + +pkg=curl +tarball=curl-8.4.0.tar.gz +tarball_dir=curl-8.4.0 +url=https://curl.se/download/${tarball} + +configure() { + test -e $tarball_dir/configured && return + (cd $tarball_dir && CFLAGS=-g ./configure \ + --host=x86_64-camellia \ + --without-ssl \ + --disable-threaded-resolver \ + --disable-ipv6 \ + --disable-tftp \ + 'ac_cv_header_termios_h=no' + ) + touch $tarball_dir/configured +} + +. ports/post -- cgit v1.2.3