wok-stable view openvas-administrator/receipt @ rev 12459

lives: fix symlink (thanks I-Jurij)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 28 08:19:20 2017 +0200 (2017-04-28)
parents 93e0de2fca4e
children
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-ng-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 }