wok diff masqmail/receipt @ rev 17991

fusecloop: fix realloc index size
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 23 15:42:00 2015 +0200 (2015-04-23)
parents ad786a87b22e
children 11bdc6e2a324
line diff
     1.1 --- a/masqmail/receipt	Tue Mar 01 16:28:33 2011 +0100
     1.2 +++ b/masqmail/receipt	Thu Apr 23 15:42:00 2015 +0200
     1.3 @@ -5,11 +5,13 @@
     1.4  CATEGORY="network"
     1.5  SHORT_DESC="An MTA for workstations and for servers in small networks."
     1.6  MAINTAINER="pascal.bellard@slitaz.org"
     1.7 +LICENSE="GPL2"
     1.8  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.9  WEB_SITE="http://marmaro.de/prog/masqmail"
    1.10  WGET_URL="$WEB_SITE/files/$TARBALL"
    1.11 +TAGS="mail"
    1.12 +
    1.13  BUILD_DEPENDS="pkg-config glib glib-dev"
    1.14 -TAGS="mail"
    1.15  
    1.16  # Rules to configure and make the package.
    1.17  compile_rules()
    1.18 @@ -20,16 +22,16 @@
    1.19  	--mandir=/usr/share/man \
    1.20  	$CONFIGURE_ARGS &&
    1.21  	make &&
    1.22 -	make DESTDIR=$PWD/_pkg install
    1.23 +	make DESTDIR=$DESTDIR install
    1.24  }
    1.25  
    1.26  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.27  genpkg_rules()
    1.28  {
    1.29  	mkdir -p $fs/usr/share
    1.30 -	cp -a $_pkg/usr/share/masqmail $fs/usr/share
    1.31 -	cp -a $_pkg/usr/bin $fs/usr
    1.32 -	cp -a $_pkg/usr/sbin $fs/usr
    1.33 -	cp -a $_pkg/etc $fs
    1.34 -	cp -a $_pkg/var $fs
    1.35 +	cp -a $install/usr/share/masqmail $fs/usr/share
    1.36 +	cp -a $install/usr/bin $fs/usr
    1.37 +	cp -a $install/usr/sbin $fs/usr
    1.38 +	cp -a $install/etc $fs
    1.39 +	cp -a $install/var $fs
    1.40  }