2003-07-11 23:08:53 +02:00
|
|
|
#! /bin/sh
|
|
|
|
|
2003-08-29 16:43:45 +02:00
|
|
|
envpkgs="$fontconfig $x11"
|
2003-07-25 22:43:25 +02:00
|
|
|
. $stdenv/setup || exit 1
|
2003-10-09 15:24:24 +02:00
|
|
|
export PATH=$pkgconfig/bin:$PATH
|
2003-07-25 22:43:25 +02:00
|
|
|
|
2003-07-11 23:08:53 +02:00
|
|
|
tar xvfz $src || exit 1
|
2003-10-09 15:24:24 +02:00
|
|
|
cd xft-* || exit 1
|
2003-08-29 16:43:45 +02:00
|
|
|
./configure --prefix=$out --x-includes=$x11/include --x-libraries=$x11/lib || exit 1
|
2003-07-11 23:08:53 +02:00
|
|
|
make || exit 1
|
|
|
|
make install || exit 1
|
|
|
|
echo $envpkgs > $out/envpkgs || exit 1
|