wok annotate masqmail/receipt @ rev 23863

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