wok-next annotate isync/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents 5597c91d561d
children
rev   line source
pascal@16932 1 # SliTaz package receipt.
pascal@16932 2
pascal@16932 3 PACKAGE="isync"
pascal@18953 4 VERSION="1.2.1"
pascal@16932 5 CATEGORY="network"
pascal@16932 6 SHORT_DESC="IMAP and MailDir mailbox synchronizer"
pascal@16932 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@16932 8 LICENSE="GPL2"
al@21020 9 WEB_SITE="http://isync.sourceforge.net/"
al@21020 10
pascal@16932 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@16932 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@16932 13
pascal@16932 14 BUILD_DEPENDS="db-dev openssl-dev"
pascal@16932 15
al@21020 16 compile_rules() {
pascal@18951 17 export LDFLAGS="$LDFLAGS -lpthread"
al@21020 18
al@21020 19 ./configure \
al@21020 20 --prefix=/usr \
al@21020 21 $CONFIGURE_ARGS &&
al@21020 22 make &&
al@21020 23 make DESTDIR=$install install
pascal@16932 24 }
pascal@16932 25
al@21020 26 genpkg_rules() {
pascal@16932 27 mkdir -p $fs/usr
pascal@16932 28 cp -a $install/usr/bin $fs/usr
al@21020 29 DEPENDS="db openssl"
al@21020 30 TAGS="email imap"
pascal@16932 31 }