nixpkgs/pkgs/Xft/Xft-build.sh
Eelco Dolstra 60017b5191 * Upgraded a bunch of packages (in particular OpenSSL, which had a
security bug).

svn path=/nixpkgs/trunk/; revision=407
2003-10-09 13:24:24 +00:00

13 lines
304 B
Bash
Executable file

#! /bin/sh
envpkgs="$fontconfig $x11"
. $stdenv/setup || exit 1
export PATH=$pkgconfig/bin:$PATH
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 $envpkgs > $out/envpkgs || exit 1