wok diff lorcon/receipt @ rev 15280

cinepaint: remove a wrong error trigger (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 26 13:12:43 2013 +0000 (2013-09-26)
parents 8d4ecbb30029
children 2a5cc8208d36
line diff
     1.1 --- a/lorcon/receipt	Sun Feb 13 22:57:56 2011 +0100
     1.2 +++ b/lorcon/receipt	Thu Sep 26 13:12:43 2013 +0000
     1.3 @@ -5,27 +5,29 @@
     1.4  CATEGORY="network"
     1.5  SHORT_DESC="A generic library for injecting 802.11 frames, capable of injection via multiple driver frameworks, without forcing modification of the application code."
     1.6  MAINTAINER="slaxemulator@gmail.com"
     1.7 -BUILD_DEPENDS="subversion"
     1.8  WEB_SITE="http://802.11ninja.net/lorcon/"
     1.9  WGET_URL="subversion|http://802.11ninja.net/svn/lorcon/trunk"
    1.10  BRANCH="$VERSION"
    1.11  
    1.12 +BUILD_DEPENDS="subversion"
    1.13 +
    1.14  # Rules to configure and make the package.
    1.15  compile_rules()
    1.16  {
    1.17  	cd $src
    1.18 +	touch -d 197001010000 .depend
    1.19  	./configure \
    1.20  		--prefix=/usr \
    1.21  		--infodir=/usr/share/info \
    1.22  		--mandir=/usr/share/man \
    1.23  		$CONFIGURE_ARGS &&
    1.24 -	make && make DESTDIR=$PWD/_pkg install
    1.25 +	make && make DESTDIR=$DESTDIR install
    1.26  }
    1.27  
    1.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.29  genpkg_rules()
    1.30  {
    1.31  	mkdir -p $fs/usr/lib
    1.32 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.33 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.34  }
    1.35