wok diff fetchmail/receipt @ rev 23009

samba: update deps (thanks mistfire)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 03 08:04:44 2020 +0100 (2020-03-03)
parents d741df010f45
children 640a2eba2511
line diff
     1.1 --- a/fetchmail/receipt	Mon Oct 14 11:52:35 2019 +0200
     1.2 +++ b/fetchmail/receipt	Tue Mar 03 08:04:44 2020 +0100
     1.3 @@ -1,16 +1,18 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="fetchmail"
     1.7 -VERSION="6.3.26"
     1.8 +VERSION="6.4.1"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="Mail retrieval and forwarding utility"
    1.11 +TAGS="email"
    1.12 +SHORT_DESC="Mail retrieval and forwarding utility."
    1.13  MAINTAINER="erjo@slitaz.org"
    1.14  LICENSE="GPL2"
    1.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16  WEB_SITE="https://www.fetchmail.info/"
    1.17 -WGET_URL="http://download.berlios.de/fetchmail/$TARBALL"
    1.18 +
    1.19 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.20 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.21 +
    1.22  HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
    1.23 -TAGS="email"
    1.24  
    1.25  DEPENDS="openssl"
    1.26  BUILD_DEPENDS="openssl-dev"
    1.27 @@ -18,16 +20,16 @@
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	cd $src
    1.32 -	./configure --with-ssl \
    1.33 +	./configure		\
    1.34 +		--with-ssl	\
    1.35  		$CONFIGURE_ARGS &&
    1.36 -	make && make DESTDIR=$DESTDIR install
    1.37 +	make &&
    1.38 +	make DESTDIR=$DESTDIR install
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44  	mkdir -p $fs/usr
    1.45 -	cp -a $install/usr/bin $fs/usr
    1.46 +	cp -a $install/usr/bin	$fs/usr
    1.47  }
    1.48 -