wok annotate openvas-manager/receipt @ rev 9654

Up: thunderbird-langpack-ru to 3.1.10.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Apr 29 01:22:17 2011 +0000 (2011-04-29)
parents 20f62bdb3543
children f2ee749d8534
rev   line source
pascal@4652 1 # SliTaz package receipt.
pascal@4652 2
pascal@4652 3 PACKAGE="openvas-manager"
pascal@9316 4 VERSION="1.0.4"
pascal@4652 5 CATEGORY="network"
pascal@4652 6 SHORT_DESC="Network security scanner (manager)."
pascal@4652 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@4652 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@4652 9 WEB_SITE="http://www.openvas.org/"
pascal@9316 10 WGET_URL="http://wald.intevation.org/frs/download.php/829/$TARBALL"
pascal@4652 11 DEPENDS="openvas-libraries sqlite util-linux-ng-uuid"
pascal@8938 12 BUILD_DEPENDS="libpcap openvas-libraries openvas-libraries-dev pkg-config \
pascal@4652 13 util-linux-ng-uuid-dev doxygen cmake gnutls sqlite sqlite-dev"
pascal@4655 14 CONFIG_FILES="/etc/openvas"
pascal@4652 15
pascal@4652 16 # Rules to configure and make the package.
pascal@4652 17 compile_rules()
pascal@4652 18 {
pascal@4652 19 cd $src
pascal@4655 20 cmake -DCMAKE_INSTALL_PREFIX=/usr -DSYSCONF_INSTALL_DIR=/etc \
pascal@4655 21 -DLOCALSTATEDIR=/var
pascal@4652 22 make &&
pascal@4652 23 make DESTDIR=$PWD/_pkg install
pascal@4652 24 }
pascal@4652 25
pascal@4652 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4652 27 genpkg_rules()
pascal@4652 28 {
pascal@4652 29 mkdir -p $fs/usr
pascal@4652 30 cp -a $_pkg/etc $fs
pascal@9317 31 cp -a $_pkg/usr/sbin $fs/usr
pascal@4652 32 }