wok annotate horst/receipt @ rev 17524

horst: add LDFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 17 22:33:21 2015 +0100 (2015-01-17)
parents 76e221d68d93
children ab52504863e3
rev   line source
paul@17523 1 # SliTaz package receipt.
paul@17523 2
paul@17523 3 PACKAGE="horst"
paul@17523 4 VERSION="4.2"
paul@17523 5 CATEGORY="network"
paul@17523 6 SHORT_DESC="Small, lightweight IEEE802.11 wireless LAN analyzer with a text interface."
paul@17523 7 MAINTAINER="paul@slitaz.org"
paul@17523 8 LICENSE="GPL2"
paul@17523 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@17523 10 WEB_SITE="http://br1.einfach.org/tech/horst/"
paul@17523 11 WGET_URL="http://br1.einfach.org/horst_dl/$TARBALL"
paul@17523 12
paul@17523 13 DEPENDS="ncurses"
paul@17523 14 BUILD_DEPENDS="ncurses-dev"
paul@17523 15
paul@17523 16 # Rules to configure and make the package.
paul@17523 17 compile_rules()
paul@17523 18 {
pascal@17524 19 export LDFLAGS="-Wl,--copy-dt-needed-entries"
paul@17523 20 make
paul@17523 21 }
paul@17523 22
paul@17523 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@17523 24 genpkg_rules()
paul@17523 25 {
paul@17523 26 mkdir -p $fs/usr/bin
paul@17523 27 cp -a $src/$PACKAGE $fs/usr/bin
paul@17523 28 }
paul@17523 29