2019-09-28 00:17:56 +08:00
|
|
|
# Description: Utility useful for non-interactive downloading of files from the Web
|
|
|
|
# URL:
|
2019-11-10 23:58:56 +08:00
|
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
2019-09-28 00:17:56 +08:00
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=wget
|
2021-04-18 08:19:42 +08:00
|
|
|
version=1.21.1
|
2019-09-28 00:17:56 +08:00
|
|
|
release=1
|
|
|
|
source=(https://ftp.gnu.org/gnu/wget/wget-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--with-ssl=openssl
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|