wok annotate masqmail/receipt @ rev 20257

Add giflossy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 13 23:27:32 2018 +0100 (2018-03-13)
parents ad786a87b22e
children 11bdc6e2a324
rev   line source
pascal@5967 1 # SliTaz package receipt.
pascal@5967 2
pascal@5967 3 PACKAGE="masqmail"
pascal@5967 4 VERSION="0.2.28"
pascal@5967 5 CATEGORY="network"
pascal@5967 6 SHORT_DESC="An MTA for workstations and for servers in small networks."
pascal@5967 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
pascal@5967 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@5967 10 WEB_SITE="http://marmaro.de/prog/masqmail"
pascal@5967 11 WGET_URL="$WEB_SITE/files/$TARBALL"
pascal@15000 12 TAGS="mail"
pascal@15000 13
pascal@8938 14 BUILD_DEPENDS="pkg-config glib glib-dev"
pascal@5967 15
pascal@5967 16 # Rules to configure and make the package.
pascal@5967 17 compile_rules()
pascal@5967 18 {
pascal@5967 19 cd $src
pascal@5967 20 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@5967 21 --with-user=root --with-group=root \
pascal@5967 22 --mandir=/usr/share/man \
pascal@5967 23 $CONFIGURE_ARGS &&
pascal@5967 24 make &&
pascal@15000 25 make DESTDIR=$DESTDIR install
pascal@5967 26 }
pascal@5967 27
pascal@5967 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@5967 29 genpkg_rules()
pascal@5967 30 {
pascal@5967 31 mkdir -p $fs/usr/share
pascal@15000 32 cp -a $install/usr/share/masqmail $fs/usr/share
pascal@15000 33 cp -a $install/usr/bin $fs/usr
pascal@15000 34 cp -a $install/usr/sbin $fs/usr
pascal@15000 35 cp -a $install/etc $fs
pascal@15000 36 cp -a $install/var $fs
pascal@5967 37 }