wok diff wget/receipt @ rev 19114

Add shiki-colors, shiki-colors-murrine. Specify HOST_ARCH="any" on the packages containing themes only.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 07 16:09:04 2016 +0300 (2016-05-07)
parents fca172c323cf
children d5596dfb8eb2
line diff
     1.1 --- a/wget/receipt	Fri Dec 04 17:18:44 2015 +0200
     1.2 +++ b/wget/receipt	Sat May 07 16:09:04 2016 +0300
     1.3 @@ -1,18 +1,19 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="wget"
     1.7 -VERSION="1.16"
     1.8 +VERSION="1.17"
     1.9  CATEGORY="utilities"
    1.10 -SHORT_DESC="retrieves files from the web"
    1.11 +SHORT_DESC="GNU Wget - non-interactive download of files from the Web"
    1.12  MAINTAINER="sygne@ombres.eu"
    1.13  LICENSE="GPL3"
    1.14  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.15  WEB_SITE="http://www.gnu.org/software/wget/wget.html"
    1.16  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.17  HOST_ARCH="i486 arm"
    1.18 +CONFIG_FILES="/etc/wgetrc"
    1.19  
    1.20 -DEPENDS="openssl libidn pcre"
    1.21 -BUILD_DEPENDS="openssl-dev libidn-dev"
    1.22 +DEPENDS="libssl libidn pcre util-linux-uuid zlib"
    1.23 +BUILD_DEPENDS="openssl-dev libidn-dev flex util-linux-uuid-dev"
    1.24  
    1.25  # Handle cross compilation
    1.26  case "$ARCH" in
    1.27 @@ -22,9 +23,14 @@
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	./configure --with-ssl=openssl \
    1.32 +	./configure \
    1.33 +		--with-ssl=openssl \
    1.34 +		--with-openssl \
    1.35 +		--sysconfdir=/etc \
    1.36  		$CONFIGURE_ARGS $ARCH_ARGS &&
    1.37  	make DESTDIR=$DESTDIR install
    1.38 +
    1.39 +	gzip $install/usr/share/man/man1/wget.1
    1.40  }
    1.41  
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43 @@ -32,17 +38,7 @@
    1.44  {
    1.45  	mkdir -p $fs/usr
    1.46  	cp -a $install/usr/bin $fs/usr
    1.47 -}
    1.48 -
    1.49 -# Post install rules.
    1.50 -post_install()
    1.51 -{
    1.52 -	[ -z "$quiet" ] && echo -e "
    1.53 -wget is in conflict with the busybox wget.
    1.54 -If you want to use the busybox wget, do (as root):
    1.55 -\033[1m ln -s /bin/busybox /usr/bin/wget \033[0m
    1.56 -"
    1.57 -	:
    1.58 +	cp -a $install/etc $fs
    1.59  }
    1.60  
    1.61  post_remove()