2004-03-09 11:59:55 +01:00
|
|
|
#! /bin/sh -e
|
2003-11-07 12:18:47 +01:00
|
|
|
|
2004-01-21 10:34:19 +01:00
|
|
|
buildinputs="$pkgconfig $perl $ORBit2 $libxml2 $popt $yacc $flex"
|
2004-03-09 11:59:55 +01:00
|
|
|
. $stdenv/setup
|
2003-11-07 12:18:47 +01:00
|
|
|
|
2004-03-09 11:59:55 +01:00
|
|
|
tar xvfj $src
|
|
|
|
cd libbonobo-*
|
|
|
|
./configure --prefix=$out
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
strip -S $out/lib/*.a
|
2004-01-21 10:34:19 +01:00
|
|
|
|
2004-03-09 11:59:55 +01:00
|
|
|
mkdir $out/nix-support
|
|
|
|
echo "$ORBit2 $popt" > $out/nix-support/propagated-build-inputs
|