nixpkgs/pkgs/development/tools/misc/callgrind/builder.sh
Martin Bravenboer dfce6ac924 Upgrade of callgrind to pre-release of 0.10.1
svn path=/nixpkgs/trunk/; revision=4260
2005-11-11 18:32:37 +00:00

14 lines
241 B
Bash

source $stdenv/setup
tar jxvf $valgrindsrc || fail
cd valgrind-* || fail
./configure --prefix=$out || fail
make || fail
make install || fail
tar zxvf $src
cd clg3 || fail
./configure --prefix=$out || fail
make || fail
make install || fail