wok diff mdk3/receipt @ rev 16013

syslinux/iso2exe/init: fix pxe names
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 04 21:08:01 2014 +0000 (2014-03-04)
parents ed7f54c2a8fe
children eeba7ab1dffe
line diff
     1.1 --- a/mdk3/receipt	Sun Dec 05 10:34:34 2010 +0000
     1.2 +++ b/mdk3/receipt	Tue Mar 04 21:08:01 2014 +0000
     1.3 @@ -5,11 +5,13 @@
     1.4  CATEGORY="security"
     1.5  SHORT_DESC="WLAN penetration tool"
     1.6  MAINTAINER="slaxemulator@gmail.com"
     1.7 -DEPENDS=""
     1.8 +LICENSE="GPL2"
     1.9  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.10  WEB_SITE="http://homepages.tu-darmstadt.de/~p_larbig/wlan/"
    1.11  WGET_URL="http://homepages.tu-darmstadt.de/~p_larbig/wlan/$TARBALL"
    1.12  
    1.13 +DEPENDS=""
    1.14 +
    1.15  # Rules to configure and make the package.
    1.16  compile_rules()
    1.17  {
    1.18 @@ -17,13 +19,12 @@
    1.19  	sed -i -e "s:/usr/local:/usr:" Makefile
    1.20  	make -C osdep
    1.21  	make
    1.22 -	make DESTDIR="$PWD/_pkg" install
    1.23 +	make DESTDIR="$DESTDIR" install
    1.24  }
    1.25  
    1.26  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.27  genpkg_rules()
    1.28  {
    1.29  	mkdir -p $fs/usr
    1.30 -	cp -a $_pkg/usr/sbin $fs/usr
    1.31 +	cp -a $install/usr/sbin $fs/usr
    1.32  }
    1.33 -