wok view isync/receipt @ rev 21474

updated mousepad (0.3.0 -> 0.4.1)
author Hans-G?nter Theisgen
date Wed May 01 07:26:05 2019 +0100 (2019-05-01)
parents 5597c91d561d
children 06e95db2d7b7
line source
1 # SliTaz package receipt.
3 PACKAGE="isync"
4 VERSION="1.3.0"
5 CATEGORY="network"
6 TAGS="email imap"
7 SHORT_DESC="IMAP and MailDir mailbox synchronizer."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://isync.sourceforge.net/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 DEPENDS="db openssl"
16 BUILD_DEPENDS="db-dev openssl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 export LDFLAGS="$LDFLAGS -lpthread"
23 ./configure \
24 --prefix=/usr \
25 $CONFIGURE_ARGS &&
26 make -j 1 &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }