summaryrefslogtreecommitdiff
path: root/ports/curl/port
diff options
context:
space:
mode:
Diffstat (limited to 'ports/curl/port')
-rwxr-xr-xports/curl/port22
1 files changed, 22 insertions, 0 deletions
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