blob: e54b2a09a7b4dca6d297d2931e3f06a952679618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Maintainer: dequis <dx@dxzone.com.ar>
# Previous maintainer: Joel Teichroeb <joel@teichroeb.net>
pkgname=rr-git
pkgver=5.5.0.r259.g969710ba
pkgrel=1
pkgdesc='Record and Replay framework: lightweight recording and deterministic debugging'
arch=(i686 x86_64)
url='http://rr-project.org/'
license=('custom')
depends=('gdb' 'capnproto')
makedepends=('git' 'cmake' 'gdb' 'ninja')
source=("git+https://github.com/rr-debugger/rr.git")
sha1sums=('SKIP')
provides=('rr')
conflicts=('rr')
options=(!strip)
pkgver() {
cd rr
git describe --long --tags | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}
prepare() {
cd rr
mkdir -p build
}
build() {
cd rr/build
cmake \
-GNinja \
-Ddisable32bit=true \
-DCMAKE_BUILD_TYPE=plain \
-DCMAKE_INSTALL_PREFIX:PATH=/usr \
-DBUILD_TESTS=OFF \
-DWILL_RUN_TESTS=OFF \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_CXX_STANDARD=14 \
..
cmake --build . -- -v
}
package() {
cd rr/build
DESTDIR="${pkgdir}" cmake --build . -- -v install
if check_option 'debug' n; then
find "${pkgdir}/usr/bin" -type f -executable -exec strip $STRIP_BINARIES {} + || :
fi
cd ..
install -D LICENSE "${pkgdir}/usr/share/licenses/rr/LICENSE"
}
|