summaryrefslogtreecommitdiff
path: root/Ports/curl/curl.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Ports/curl/curl.sh')
-rwxr-xr-xPorts/curl/curl.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/Ports/curl/curl.sh b/Ports/curl/curl.sh
deleted file mode 100755
index 42fd1e573a..0000000000
--- a/Ports/curl/curl.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-PORT_DIR=curl
-fetch() {
- run_fetch_web "https://curl.haxx.se/download/curl-7.65.3.tar.bz2"
- run_patch fix-autoconf.patch -p1
-}
-configure() {
- run_export_env CC i686-pc-serenity-gcc
- run_configure_autotools --disable-threaded-resolver
-}
-build() {
- run_make
-}
-install() {
- run_make_install DESTDIR="$SERENITY_ROOT"/Root
-}
-. ../.port_include.sh