wok-next diff fetchmail/receipt @ rev 20877

msmtp: up (1.6.8); fetchmail: patch
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Jul 06 14:18:54 2018 +0300 (2018-07-06)
parents 383d0ea319bb
children d5aab818505e
line diff
     1.1 --- a/fetchmail/receipt	Sun Dec 22 22:06:56 2013 +0100
     1.2 +++ b/fetchmail/receipt	Fri Jul 06 14:18:54 2018 +0300
     1.3 @@ -1,33 +1,28 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="fetchmail"
     1.8  VERSION="6.3.26"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="Mail retrieval and forwarding utility "
    1.11 +SHORT_DESC="Mail retrieval and forwarding utility"
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.15 -WEB_SITE="http://fetchmail.berlios.de/"
    1.16 -WGET_URL="http://download.berlios.de/fetchmail/$TARBALL"
    1.17 -HANDBOOK_URL="http://fetchmail.berlios.de/fetchmail-man.html"
    1.18 -TAGS="email"
    1.19 +WEB_SITE="http://www.fetchmail.info/"
    1.20  
    1.21 -DEPENDS="openssl"
    1.22 -BUILD_DEPENDS="openssl-dev"
    1.23 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.24 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.25  
    1.26 -# Rules to configure and make the package.
    1.27 -compile_rules()
    1.28 -{
    1.29 -	cd $src
    1.30 -	./configure --with-ssl \
    1.31 +BUILD_DEPENDS="openssl-dev gettext"
    1.32 +
    1.33 +compile_rules() {
    1.34 +	./configure \
    1.35 +		--with-ssl \
    1.36  		$CONFIGURE_ARGS &&
    1.37 -	make && make DESTDIR=$DESTDIR install
    1.38 +	make &&
    1.39 +	make DESTDIR=$DESTDIR install
    1.40  }
    1.41  
    1.42 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.43 -genpkg_rules()
    1.44 -{
    1.45 -	mkdir -p $fs/usr
    1.46 -	cp -a $install/usr/bin $fs/usr
    1.47 +genpkg_rules() {
    1.48 +	copy @std
    1.49 +	DEPENDS="openssl python"
    1.50 +	TAGS="email"
    1.51  }
    1.52 -