8f0bfde778
* Update misc packages for GCC 13. * Thanks to @CoreELEC (Python 3), @ArchLinux (lrps2), and @AmberELEC (EmulationStation).
18 lines
677 B
Makefile
18 lines
677 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
|
|
|
|
PKG_NAME="wget"
|
|
PKG_VERSION="1.21.4"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.gnu.org/software/wget/"
|
|
PKG_URL="http://ftp.gnu.org/gnu/wget/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="ccache:host"
|
|
PKG_DEPENDS_TARGET="toolchain gnutls"
|
|
PKG_LONGDESC="GNU Wget is a free software package for retrieving files using HTTP, HTTPS, FTP and FTPS"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="--disable-nls --disable-acl --without-selinux"
|
|
|
|
post_install() {
|
|
echo -e "\nca_directory = /usr/lib/ssl" >> ${INSTALL}/etc/wgetrc
|
|
}
|