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