distribution/packages/sysutils/wget/package.mk

19 lines
652 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)
2023-05-09 19:21:47 +00:00
# Copyright (C) 2023-present Fewtarius
2022-02-05 14:23:32 +00:00
PKG_NAME="wget"
2023-05-09 19:21:47 +00:00
PKG_VERSION="1.21.3"
2022-02-05 14:23:32 +00:00
PKG_LICENSE="GPL"
PKG_SITE="http://www.gnu.org/software/wget/"
2023-02-24 13:53:43 +00:00
PKG_URL="http://ftpmirror.gnu.org/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
}