wok-6.x diff lorcon/receipt @ rev 15131
scim: filter wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Aug 15 09:36:30 2013 +0000 (2013-08-15) |
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 Aug 15 09:36:30 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