wok-next diff isync/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents 5597c91d561d
children
line diff
     1.1 --- a/isync/receipt	Mon Mar 07 11:45:43 2016 +0100
     1.2 +++ b/isync/receipt	Sat Nov 21 14:32:44 2020 +0100
     1.3 @@ -6,25 +6,26 @@
     1.4  SHORT_DESC="IMAP and MailDir mailbox synchronizer"
     1.5  MAINTAINER="pascal.bellard@slitaz.org"
     1.6  LICENSE="GPL2"
     1.7 +WEB_SITE="http://isync.sourceforge.net/"
     1.8 +
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10 -WEB_SITE="http://isync.sourceforge.net/"
    1.11  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.12 -TAGS="email imap"
    1.13  
    1.14 -DEPENDS="db openssl"
    1.15  BUILD_DEPENDS="db-dev openssl-dev"
    1.16  
    1.17 -# Rules to configure and make the package.
    1.18 -compile_rules()
    1.19 -{
    1.20 +compile_rules() {
    1.21  	export LDFLAGS="$LDFLAGS -lpthread"
    1.22 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.23 -	make && make DESTDIR=$DESTDIR install
    1.24 +
    1.25 +	./configure \
    1.26 +		--prefix=/usr \
    1.27 +		$CONFIGURE_ARGS &&
    1.28 +	make &&
    1.29 +	make DESTDIR=$install install
    1.30  }
    1.31  
    1.32 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.33 -genpkg_rules()
    1.34 -{
    1.35 +genpkg_rules() {
    1.36  	mkdir -p $fs/usr
    1.37  	cp -a $install/usr/bin $fs/usr
    1.38 +	DEPENDS="db openssl"
    1.39 +	TAGS="email imap"
    1.40  }