wok view lorcon/receipt @ rev 15472

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 09 17:34:23 2013 +0000 (2013-11-09)
parents 394ef0611eb5
children cfc6ddf8de74
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 LICENSE="GPL2"
9 WEB_SITE="http://802.11ninja.net/lorcon/"
10 WGET_URL="subversion|http://802.11ninja.net/svn/lorcon/trunk"
11 BRANCH="$VERSION"
13 BUILD_DEPENDS="subversion"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 touch -d 197001010000 .depend
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }