wok rev 15117
lorcon: create .depend
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Aug 14 21:36:18 2013 +0000 (2013-08-14) |
parents | 557f91b0747c |
children | cc45f15b4baf |
files | libee/receipt liblognorm/receipt lorcon/receipt |
line diff
1.1 --- a/libee/receipt Wed Aug 14 21:26:49 2013 +0000 1.2 +++ b/libee/receipt Wed Aug 14 21:36:18 2013 +0000 1.3 @@ -10,7 +10,7 @@ 1.4 WGET_URL="http://www.libee.org/files/download/$TARBALL" 1.5 1.6 DEPENDS="libestr" 1.7 -BUILD_DEPENDS="libestr-dev" 1.8 +BUILD_DEPENDS="libestr-dev automake" 1.9 1.10 # Rules to configure and make the package. 1.11 compile_rules()
2.1 --- a/liblognorm/receipt Wed Aug 14 21:26:49 2013 +0000 2.2 +++ b/liblognorm/receipt Wed Aug 14 21:36:18 2013 +0000 2.3 @@ -10,7 +10,7 @@ 2.4 WGET_URL="http://www.liblognorm.com/files/download/$TARBALL" 2.5 2.6 DEPENDS="libee libestr" 2.7 -BUILD_DEPENDS="libestr-dev libee-dev" 2.8 +BUILD_DEPENDS="libestr-dev libee-dev automake" 2.9 2.10 # Rules to configure and make the package. 2.11 compile_rules()
3.1 --- a/lorcon/receipt Wed Aug 14 21:26:49 2013 +0000 3.2 +++ b/lorcon/receipt Wed Aug 14 21:36:18 2013 +0000 3.3 @@ -5,27 +5,29 @@ 3.4 CATEGORY="network" 3.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." 3.6 MAINTAINER="slaxemulator@gmail.com" 3.7 -BUILD_DEPENDS="subversion" 3.8 WEB_SITE="http://802.11ninja.net/lorcon/" 3.9 WGET_URL="subversion|http://802.11ninja.net/svn/lorcon/trunk" 3.10 BRANCH="$VERSION" 3.11 3.12 +BUILD_DEPENDS="subversion" 3.13 + 3.14 # Rules to configure and make the package. 3.15 compile_rules() 3.16 { 3.17 cd $src 3.18 + touch -d 197001010000 .depend 3.19 ./configure \ 3.20 --prefix=/usr \ 3.21 --infodir=/usr/share/info \ 3.22 --mandir=/usr/share/man \ 3.23 $CONFIGURE_ARGS && 3.24 - make && make DESTDIR=$PWD/_pkg install 3.25 + make && make DESTDIR=$DESTDIR install 3.26 } 3.27 3.28 # Rules to gen a SliTaz package suitable for Tazpkg. 3.29 genpkg_rules() 3.30 { 3.31 mkdir -p $fs/usr/lib 3.32 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 3.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 3.34 } 3.35