# HG changeset patch # User Hans-G?nter Theisgen # Date 1556120498 -3600 # Node ID 11bdc6e2a324e79fef412108f106e067a2404e93 # Parent fe96d104d02ed307696e5349549ed55c1335c9c8 updated masqmail (0.2.28 -> 0.3.5) diff -r fe96d104d02e -r 11bdc6e2a324 masqmail/receipt --- a/masqmail/receipt Wed Apr 24 17:27:05 2019 +0200 +++ b/masqmail/receipt Wed Apr 24 16:41:38 2019 +0100 @@ -1,27 +1,30 @@ # SliTaz package receipt. PACKAGE="masqmail" -VERSION="0.2.28" +VERSION="0.3.5" CATEGORY="network" -SHORT_DESC="An MTA for workstations and for servers in small networks." +TAGS="mail" +SHORT_DESC="A mail transfer agent for workstations and servers in small networks." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://marmaro.de/prog/masqmail/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://marmaro.de/prog/masqmail" -WGET_URL="$WEB_SITE/files/$TARBALL" -TAGS="mail" +WGET_URL="${WEB_SITE}files/$TARBALL" -BUILD_DEPENDS="pkg-config glib glib-dev" +BUILD_DEPENDS="glib glib-dev pkg-config" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --with-user=root --with-group=root \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && - make && + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --with-user=root \ + --with-group=root \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make -j 1 && make DESTDIR=$DESTDIR install } @@ -29,9 +32,10 @@ genpkg_rules() { mkdir -p $fs/usr/share - cp -a $install/usr/share/masqmail $fs/usr/share - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/sbin $fs/usr - cp -a $install/etc $fs - cp -a $install/var $fs + + cp -a $install/usr/share/masqmail $fs/usr/share + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/sbin $fs/usr + cp -a $install/etc $fs +# cp -a $install/var $fs }