wok view msmtp/receipt @ rev 12329

Up: libv4l to 0.8.5.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Apr 19 08:29:48 2012 +0000 (2012-04-19)
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 }