wok view msmtp/receipt @ rev 13721

Add cherrytree: A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 21 08:15:57 2012 +0000 (2012-12-21)
parents
children 2b9f96603415
line source
1 # SliTaz package receipt.
3 PACKAGE="msmtp"
4 VERSION="1.4.27"
5 CATEGORY="network"
6 SHORT_DESC="An SMTP client who transmits a mail to an SMTP server."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://msmtp.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="libssl"
13 BUILD_DEPENDS="openssl-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --with-ssl=openssl \
21 --without-gnome-keyring \
22 --without-libgsasl \
23 --without-libidn \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }