wok-6.x diff masqmail/receipt @ rev 22122
updated webalizer (2.21-02 -> 2.23.08)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Nov 03 16:24:25 2019 +0100 (2019-11-03) |
parents | 380ffe05937a |
children | 83b97236db32 |
line diff
1.1 --- a/masqmail/receipt Sat Aug 10 17:00:38 2013 +0000 1.2 +++ b/masqmail/receipt Sun Nov 03 16:24:25 2019 +0100 1.3 @@ -1,27 +1,30 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="masqmail" 1.7 -VERSION="0.2.28" 1.8 +VERSION="0.3.5" 1.9 CATEGORY="network" 1.10 -SHORT_DESC="An MTA for workstations and for servers in small networks." 1.11 +TAGS="mail" 1.12 +SHORT_DESC="A mail transfer agent for workstations and servers in small networks." 1.13 MAINTAINER="pascal.bellard@slitaz.org" 1.14 LICENSE="GPL2" 1.15 +WEB_SITE="http://marmaro.de/prog/masqmail/" 1.16 + 1.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 -WEB_SITE="http://marmaro.de/prog/masqmail" 1.19 -WGET_URL="$WEB_SITE/files/$TARBALL" 1.20 -TAGS="mail" 1.21 +WGET_URL="${WEB_SITE}files/$TARBALL" 1.22 1.23 -BUILD_DEPENDS="pkg-config glib glib-dev" 1.24 +BUILD_DEPENDS="glib glib-dev pkg-config" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - cd $src 1.30 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.31 - --with-user=root --with-group=root \ 1.32 - --mandir=/usr/share/man \ 1.33 - $CONFIGURE_ARGS && 1.34 - make && 1.35 + ./configure \ 1.36 + --prefix=/usr \ 1.37 + --infodir=/usr/share/info \ 1.38 + --with-user=root \ 1.39 + --with-group=root \ 1.40 + --mandir=/usr/share/man \ 1.41 + $CONFIGURE_ARGS && 1.42 + make -j 1 && 1.43 make DESTDIR=$DESTDIR install 1.44 } 1.45 1.46 @@ -29,9 +32,10 @@ 1.47 genpkg_rules() 1.48 { 1.49 mkdir -p $fs/usr/share 1.50 - cp -a $install/usr/share/masqmail $fs/usr/share 1.51 - cp -a $install/usr/bin $fs/usr 1.52 - cp -a $install/usr/sbin $fs/usr 1.53 - cp -a $install/etc $fs 1.54 - cp -a $install/var $fs 1.55 + 1.56 + cp -a $install/usr/share/masqmail $fs/usr/share 1.57 + cp -a $install/usr/bin $fs/usr 1.58 + cp -a $install/usr/sbin $fs/usr 1.59 + cp -a $install/etc $fs 1.60 +# cp -a $install/var $fs 1.61 }