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