wok annotate horst/receipt @ rev 24043

memtest: add 386 support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 30 16:47:13 2021 +0000 (2021-04-30)
parents 667a6ebad331
children 5ea0ce1cecc0
rev   line source
paul@17523 1 # SliTaz package receipt.
paul@17523 2
paul@17523 3 PACKAGE="horst"
Hans-G?nter@22931 4 VERSION="5.1"
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"
Hans-G?nter@22931 9 WEB_SITE="https://github.com/br101/horst"
Hans-G?nter@22931 10
paul@17523 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@22931 12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
paul@17523 13
mojo@17525 14 DEPENDS="ncurses libtinfo"
Hans-G?nter@22931 15 BUILD_DEPENDS="libnl-dev ncurses-dev"
paul@17523 16
paul@17523 17 # Rules to configure and make the package.
paul@17523 18 compile_rules()
paul@17523 19 {
Hans-G?nter@22931 20 export LDFLAGS="$LDFLAGS -lrt -Wl,--copy-dt-needed-entries"
paul@17523 21 make
paul@17523 22 }
paul@17523 23
paul@17523 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@17523 25 genpkg_rules()
paul@17523 26 {
paul@17523 27 mkdir -p $fs/usr/bin
Hans-G?nter@22931 28 cp -a $src/$PACKAGE $fs/usr/bin
paul@17523 29 }