wok view openvas-administrator/receipt @ rev 12596

Up: libltdl to 2.4.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Apr 28 21:45:20 2012 +0000 (2012-04-28)
parents 40297b2f1e08
children 781f09eb4bb3
line source
1 # SliTaz package receipt.
3 PACKAGE="openvas-administrator"
4 VERSION="1.0.1"
5 CATEGORY="network"
6 SHORT_DESC="Network security scanner (administrator)."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.openvas.org/"
10 WGET_URL="http://wald.intevation.org/frs/download.php/828/$TARBALL"
11 DEPENDS="openvas-libraries util-linux-uuid"
12 BUILD_DEPENDS="libpcap doxygen openvas-libraries-dev openvas-libraries \
13 gnutls-dev cmake glib-dev"
14 CONFIG_FILES="/etc/openvas"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 cmake -DCMAKE_INSTALL_PREFIX=/usr -DSYSCONF_INSTALL_DIR=/etc \
21 -DLOCALSTATEDIR=/var
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/etc $fs
31 cp -a $_pkg/usr/sbin $fs/usr
32 }