wok-undigest rev 1120

Add sysdig
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 04 14:36:46 2014 +0000 (2014-04-04)
parents ad2376b18023
children b9bd1a181455
files sysdig/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/sysdig/receipt	Fri Apr 04 14:36:46 2014 +0000
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="sysdig"
     1.7 +VERSION="0.1.72"
     1.8 +CATEGORY="misc"
     1.9 +SHORT_DESC="A System Troubleshooting Tool."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="GPL2"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://www.sysdig.org/"
    1.14 +WGET_URL="https://github.com/draios/sysdig/archive/$VERSION.tar.gz"
    1.15 +
    1.16 +DEPENDS=""
    1.17 +#BUILD_DEPENDS="wget cmake linux-api-headers   linux-module-headers"
    1.18 +BUILD_DEPENDS="wget cmake linux-module-headers"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +	mkdir ../obj
    1.24 +	cd ../obj
    1.25 +	cmake -DCMAKE_INSTALL_PREFIX=/usr $src
    1.26 +#cmake --debug-output --trace -DCMAKE_INSTALL_PREFIX=/usr $src
    1.27 +	make KERNELDIR=/usr/src/linux &&
    1.28 +	make DESTDIR=$DESTDIR install
    1.29 +}
    1.30 +
    1.31 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.32 +genpkg_rules()
    1.33 +{
    1.34 +	cp -a $install/* $fs
    1.35 +}