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