wok-undigest rev 1116

Add rr (need linux 3.4+)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 03 15:04:17 2014 +0000 (2014-04-03)
parents f8cf83d7cf91
children b2187c4c19ce
files rr/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rr/receipt	Thu Apr 03 15:04:17 2014 +0000
     1.3 @@ -0,0 +1,30 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="rr"
     1.7 +VERSION="1.1.0"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Records nondeterministic executions and debugs them deterministically."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="MIT BSD"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://www.rr-project.org/"
    1.14 +WGET_URL="https://github.com/mozilla/rr/archive/$VERSION.tar.gz"
    1.15 +
    1.16 +DEPENDS="libdisasm libpfm"
    1.17 +BUILD_DEPENDS="wget cmake libdisasm-dev libpfm-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	mkdir ../obj
    1.23 +	cd ../obj
    1.24 +	cmake $src
    1.25 +	make &&
    1.26 +	make DESTDIR=$DESTDIR install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	cp -a $install/* $fs
    1.33 +}