wok view lorcon/receipt @ 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 8d4ecbb30029
children 2a5cc8208d36
line source
1 # SliTaz package receipt.
3 PACKAGE="lorcon"
4 VERSION="163"
5 CATEGORY="network"
6 SHORT_DESC="A generic library for injecting 802.11 frames, capable of injection via multiple driver frameworks, without forcing modification of the application code."
7 MAINTAINER="slaxemulator@gmail.com"
8 WEB_SITE="http://802.11ninja.net/lorcon/"
9 WGET_URL="subversion|http://802.11ninja.net/svn/lorcon/trunk"
10 BRANCH="$VERSION"
12 BUILD_DEPENDS="subversion"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 touch -d 197001010000 .depend
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }