summaryrefslogtreecommitdiff
path: root/repo/core/curl.xibuild
blob: 5681315ccf1cdb8cfa9807fdb88a77e89c727f0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

DEPS=(cacerts openssl zlib zstd )

SOURCE=https://curl.se/download/curl-7.80.0.tar.xz
DESC="A utility for transfering files with URL syntax"

build () {
    ./configure --prefix=/usr                           \
            --disable-static                        \
            --with-openssl                          \
            --enable-threaded-resolver              \
            --with-ca-path=/etc/ssl/certs &&
    make

    make DESTDIR=$PKG_DEST install
}