about summary refs log tree commit diff
path: root/pkgs/development/libraries/gtk+/pango/builder.sh
blob: daa6001cc17c9064f1bcaea95778b70ab2e13e2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

buildinputs="$pkgconfig $x11 $glib $xft"
. $stdenv/setup || exit 1

tar xvfj $src || exit 1
cd pango-* || exit 1
./configure --prefix=$out --x-includes=$x11/include --x-libraries=$x11/lib || exit 1
make || exit 1
make install || exit 1

echo "$xft" > $out/propagated-build-inputs || exit 1