1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 08:31:59 +00:00
nixpkgs/build/fontconfig-build.sh

13 lines
329 B
Bash
Raw Normal View History

#! /bin/sh
export PATH=$freetype/bin:/bin:/usr/bin
top=`pwd`
tar xvfz $src || exit 1
cd fcpackage*/fontconfig || exit 1
./configure --prefix=$top --with-confdir=$top/etc/fonts --x-includes=/usr/X11/include --x-libraries=/usr/X11/lib || exit 1
make || exit 1
make install || exit 1
cd $top || exit 1
rm -rf fcpackage* || exit 1