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

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

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

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