wok-next annotate wget/receipt @ rev 20663

Fix web site for the Shimmer Project themes
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu May 10 22:58:32 2018 +0300 (2018-05-10)
parents c37be8966f03
children 342b30daff76
rev   line source
al@20457 1 # SliTaz package receipt v2.
sygne@1558 2
sygne@1558 3 PACKAGE="wget"
al@19672 4 VERSION="1.19.1"
al@19202 5 CATEGORY="network"
al@19672 6 SHORT_DESC="GNU Wget - the non-interactive network downloader"
sygne@1558 7 MAINTAINER="sygne@ombres.eu"
pascal@15201 8 LICENSE="GPL3"
al@19672 9 WEB_SITE="https://www.gnu.org/software/wget/"
sygne@1558 10
al@19672 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19672 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
al@19672 13
al@19672 14 BUILD_DEPENDS="openssl-dev libidn-dev util-linux-uuid-dev gettext zlib-dev \
al@19672 15 perl pcre-dev"
pankso@9801 16
al@20457 17 compile_rules() {
al@20457 18 case "$ARCH" in
al@20457 19 arm) ARCH_ARGS="--with-libssl-prefix=/cross/$ARCH/sysroot/usr/lib" ;;
al@20457 20 esac
pankso@16059 21
al@18963 22 ./configure \
al@18963 23 --with-ssl=openssl \
al@18963 24 --with-openssl \
al@20534 25 $ARCH_ARGS \
al@20534 26 $CONFIGURE_ARGS &&
pankso@9801 27 make DESTDIR=$DESTDIR install
sygne@1558 28 }
sygne@1558 29
al@20457 30 genpkg_rules() {
al@20534 31 copy @std
al@20457 32 DEPENDS="openssl libidn pcre util-linux-uuid zlib"
al@20457 33 CONFIG_FILES="/etc/wgetrc"
sygne@1558 34 }