wok view scanssh/receipt @ rev 14105

Up: libwekkit (1.8.3) + Build fix with bison 2.6
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 24 09:15:40 2013 +0100 (2013-02-24)
parents d53046115547
children 164fcaca1cd0
line source
1 # SliTaz package receipt.
3 PACKAGE="scanssh"
4 VERSION="2.1"
5 CATEGORY="network"
6 SHORT_DESC="Search for SSH server"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libpcap libdnet libevent"
9 BUILD_DEPENDS="libpcap-dev libdnet-dev libevent libevent-dev autoconf"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.monkey.org/~provos/scanssh/"
12 WGET_URL="http://www.monkey.org/~provos/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/bin
28 cp -a $src/scanssh $fs/usr/bin
29 }