about summary refs log tree commit diff
path: root/pkgs/development/libraries/db4/builder.sh
blob: f32e4ec50dd33505b6a1570ab7c9d8ca40e782f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

. $stdenv/setup || exit 1

tar xvfz $src || exit 1
cd db-*/build_unix || exit 1
../dist/configure --prefix=$out --enable-cxx --enable-compat185 || exit 1
make || exit 1
make install || exit 1
rm -rf $out/doc || exit 1