wok-undigest view rr/receipt @ rev 1229

updated libgio and libgio-dev (2.43.3 -> 2.62.4)
author Hans-G?nter Theisgen
date Wed Sep 09 14:00:14 2020 +0100 (2020-09-09)
parents 79c3da56dd25
children
line source
1 # SliTaz package receipt.
3 PACKAGE="rr"
4 VERSION="1.1.0"
5 CATEGORY="development"
6 SHORT_DESC="Records nondeterministic executions and debugs them deterministically."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.rr-project.org/"
11 WGET_URL="https://github.com/mozilla/rr/archive/$VERSION.tar.gz"
13 DEPENDS="libdisasm libpfm"
14 BUILD_DEPENDS="wget cmake libdisasm-dev libpfm-dev linux-api-headers"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i 's|errno.h>|linux/ptrace.h>\n#include <&|' src/task.cc src/util.cc
20 mkdir ../obj
21 cd ../obj
22 cmake -DCMAKE_INSTALL_PREFIX=/usr $src
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs
31 }