11 lines
247 B
Bash
11 lines
247 B
Bash
|
#! /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
|