Files
Arch-R/packages/web/curl/package.mk
Ian Leonard cdd803a03f curl: update to 7.67.0
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2019-11-19 19:14:11 +00:00

77 lines
3.3 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="curl"
PKG_VERSION="7.67.0"
PKG_SHA256="f5d2e7320379338c3952dcc7566a140abb49edb575f9f99272455785c40e536c"
PKG_LICENSE="MIT"
PKG_SITE="http://curl.haxx.se"
PKG_URL="http://curl.haxx.se/download/$PKG_NAME-$PKG_VERSION.tar.xz"
PKG_DEPENDS_TARGET="toolchain zlib gnutls rtmpdump libidn2 nghttp2"
PKG_LONGDESC="Client and library for (HTTP, HTTPS, FTP, ...) transfers."
PKG_TOOLCHAIN="configure"
PKG_CONFIGURE_OPTS_TARGET="ac_cv_lib_rtmp_RTMP_Init=yes \
ac_cv_header_librtmp_rtmp_h=yes \
--disable-debug \
--enable-optimize \
--enable-warnings \
--disable-curldebug \
--disable-ares \
--enable-largefile \
--enable-http \
--enable-ftp \
--enable-file \
--disable-ldap \
--disable-ldaps \
--enable-rtsp \
--enable-proxy \
--disable-dict \
--disable-telnet \
--disable-tftp \
--disable-pop3 \
--disable-imap \
--disable-smb \
--disable-smtp \
--disable-gopher \
--disable-manual \
--enable-libgcc \
--enable-ipv6 \
--enable-versioned-symbols \
--enable-nonblocking \
--enable-threaded-resolver \
--enable-verbose \
--disable-sspi \
--enable-crypto-auth \
--enable-cookies \
--enable-symbol-hiding \
--disable-soname-bump \
--with-gnu-ld \
--without-krb4 \
--without-spnego \
--without-gssapi \
--with-zlib \
--without-egd-socket \
--enable-thread \
--with-random=/dev/urandom \
--with-gnutls \
--without-ssl \
--without-mbedtls \
--without-nss \
--with-ca-bundle=/run/libreelec/cacert.pem \
--without-ca-path \
--without-libpsl \
--without-libmetalink \
--without-libssh2 \
--with-librtmp \
--with-libidn2 \
--with-nghttp2"
post_makeinstall_target() {
rm -rf $INSTALL/usr/share/zsh
rm -rf $INSTALL/usr/bin/curl-config
sed -e "s:\(['= ]\)/usr:\\1$SYSROOT_PREFIX/usr:g" -i $SYSROOT_PREFIX/usr/bin/curl-config
}