ec3b5134c1
* A solution to the library abstraction problem (i.e., if package X needs library Y, and library Y needs library Z, then we do not (generally) want to declare Z as a input to X since that would break abstraction). This was not possible under the old Nix. svn path=/nixpkgs/trunk/; revision=150
13 lines
291 B
Bash
Executable file
13 lines
291 B
Bash
Executable file
#! /bin/sh
|
|
|
|
export PATH=/bin:/usr/bin
|
|
envpkgs=$fontconfig
|
|
. $setenv
|
|
|
|
tar xvfz $src || exit 1
|
|
cd fcpackage*/Xft || exit 1
|
|
./configure --prefix=$out --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|
|
echo $envpkgs > $out/envpkgs || exit 1
|