wok-undigest view dovecot/receipt @ rev 24

Add: at, wol, owfs, wput. Change maintainer for dovecot. Welcom Ludovic.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Apr 03 14:08:46 2010 +0200 (2010-04-03)
parents d3cabeef32fc
children 580ad8d9d360
line source
1 # SliTaz package receipt.
3 PACKED_SIZE="8.0k"
4 UNPACKED_SIZE="4.0k"
5 PACKAGE="dovecot"
6 VERSION="1.2.11"
7 CATEGORY="network"
8 SHORT_DESC="Dovecot IMAP and POP3 Server."
9 MAINTAINER="l.lemarinel@gmail.com"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="www.dovecot.org"
12 WGET_URL="http://www.dovecot.org/releases/1.2/$TARBALL"
13 BUILD_DEPENDS="openssl-dev libcap-dev"
14 DEPENDS="openssl libcap"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --sysconfdir=/etc/dovecot \
23 --libexecdir=/usr/lib/$PACKAGE \
24 --localstatedir=/var \
25 --mandir=/usr/share/man \
26 --infodir=/usr/share/info
28 make
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs
36 cp -a $_pkg/* $fs
37 }