blob: 42fd1e573ac2fab456cf71865db89122c7dfd7c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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
|