d74192ee38
svn path=/nixpkgs/trunk/; revision=823
15 lines
281 B
Bash
Executable file
15 lines
281 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
buildinputs="$pkgconfig $perl $ORBit2 $libxml2 $popt $yacc $flex"
|
|
. $stdenv/setup
|
|
|
|
tar xvfj $src
|
|
cd libbonobo-*
|
|
./configure --prefix=$out
|
|
make
|
|
make install
|
|
strip -S $out/lib/*.a
|
|
|
|
mkdir $out/nix-support
|
|
echo "$ORBit2 $popt" > $out/nix-support/propagated-build-inputs
|