distribution/packages/web/wget/package.mk

19 lines
677 B
Makefile
Raw Normal View History

2022-02-05 14:23:32 +00:00
# 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)
2022-02-05 14:23:32 +00:00
PKG_NAME="wget"
PKG_VERSION="1.21.4"
2022-02-05 14:23:32 +00:00
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"
2022-02-05 14:23:32 +00:00
PKG_DEPENDS_HOST="ccache:host"
2022-03-30 22:21:17 +00:00
PKG_DEPENDS_TARGET="toolchain gnutls"
2022-02-05 14:23:32 +00:00
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() {
2023-02-24 13:53:43 +00:00
echo -e "\nca_directory = /usr/lib/ssl" >> ${INSTALL}/etc/wgetrc
2022-02-05 14:23:32 +00:00
}