2004-03-09 11:59:55 +01:00
|
|
|
#! /bin/sh -e
|
2003-11-06 14:16:41 +01:00
|
|
|
|
2003-11-06 16:24:19 +01:00
|
|
|
buildinputs="$pkgconfig $x11 $glib $xft"
|
2004-03-09 11:59:55 +01:00
|
|
|
. $stdenv/setup
|
2003-11-06 14:16:41 +01:00
|
|
|
|
2004-03-09 11:59:55 +01:00
|
|
|
tar xvfj $src
|
|
|
|
cd pango-*
|
|
|
|
./configure --prefix=$out --x-includes=$x11/include --x-libraries=$x11/lib
|
|
|
|
make
|
|
|
|
make install
|
2003-11-06 16:24:19 +01:00
|
|
|
|
2004-03-09 11:59:55 +01:00
|
|
|
mkdir $out/nix-support
|
|
|
|
echo "$xft $glib" > $out/nix-support/propagated-build-inputs
|