diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-16 20:43:49 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-16 20:43:49 +0000 |
| commit | 0582b0f8cd26678e741a06ba2ab42cc47a7c689a (patch) | |
| tree | 028dcc99591775e87682c0ff8259fea3a21aa538 /src/tesserae/extra/valgrind.nim | |
| parent | moved core LFS tessera to core/ (diff) | |
moved non LFS tessera to extra/
Diffstat (limited to 'src/tesserae/extra/valgrind.nim')
| -rw-r--r-- | src/tesserae/extra/valgrind.nim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/tesserae/extra/valgrind.nim b/src/tesserae/extra/valgrind.nim new file mode 100644 index 0000000..d01d02e --- /dev/null +++ b/src/tesserae/extra/valgrind.nim @@ -0,0 +1,18 @@ +import .. / lapis + +tessera "valgrind": + source: "https://sourceware.org/pub/valgrind/valgrind-3.25.1.tar.bz2" + patches: @[""] + dependencies: @[ + "libalo" + ] + build: @[ + "sed -i 's|/doc/valgrind||' docs/Makefile.in", + """ + ./configure --prefix=/usr \ + --datasir=/usr/share/doc/valgrind-3.25.1 + """, + "make", + "make install" + ] + result: "valgrind" |
