mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
823b3e4770
lots of packages are needed. svn path=/nixpkgs/trunk/; revision=681
15 lines
357 B
Bash
Executable file
15 lines
357 B
Bash
Executable file
#! /bin/sh
|
|
|
|
buildinputs="$pkgconfig $perl $glib $gnomevfs $libbonobo $GConf \
|
|
$popt $zlib"
|
|
. $stdenv/setup || exit 1
|
|
|
|
tar xvfj $src || exit 1
|
|
cd libgnome-* || exit 1
|
|
./configure --prefix=$out || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|
|
strip -S $out/lib/*.a || exit 1
|
|
|
|
echo "$glib $gnomevfs $libbonobo $GConf" > $out/propagated-build-inputs || exit 1
|