d74192ee38
svn path=/nixpkgs/trunk/; revision=823
16 lines
318 B
Bash
Executable file
16 lines
318 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
buildinputs="$pkgconfig $perl $libxml2 $libglade $libgnome \
|
|
$libgnomecanvas"
|
|
. $stdenv/setup
|
|
|
|
tar xvfj $src
|
|
cd libbonoboui-*
|
|
./configure --prefix=$out
|
|
make
|
|
make install
|
|
strip -S $out/lib/*.a
|
|
|
|
mkdir $out/nix-support
|
|
echo "$libxml2 $libgnome $libgnomecanvas" > $out/nix-support/propagated-build-inputs
|