wok view masqmail/receipt @ rev 21920

Add pcem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 05 16:15:48 2019 +0200 (2019-10-05)
parents 380ffe05937a
children 83b97236db32
line source
1 # SliTaz package receipt.
3 PACKAGE="masqmail"
4 VERSION="0.3.5"
5 CATEGORY="network"
6 TAGS="mail"
7 SHORT_DESC="A mail transfer agent for workstations and servers in small networks."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://marmaro.de/prog/masqmail/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}files/$TARBALL"
15 BUILD_DEPENDS="glib glib-dev pkg-config"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --with-user=root \
24 --with-group=root \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make -j 1 &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
36 cp -a $install/usr/share/masqmail $fs/usr/share
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/sbin $fs/usr
39 cp -a $install/etc $fs
40 # cp -a $install/var $fs
41 }