forked from conda-archive/conda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt at getting a working fontconfig recipe
- Loading branch information
Aaron Meurer
committed
Jul 3, 2013
1 parent
42f6241
commit 3f792ca
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
chmod +x configure | ||
export FREETYPE_LIBS=-L$PREFIX/lib/ | ||
export FREETYPE_CFLAGS=-I$PREFIX/include/freetype2 | ||
export LIBS=-L$PREFIX/lib/ | ||
export CFLAGS=-I$PREFIX/include | ||
export LIBXML2_CFLAGS=-I$PREFIX/include/libxml2 | ||
export LIBXML2_LIBS=-L$PREFIX/lib/ | ||
./configure --prefix $PREFIX --enable-libxml2 | ||
make | ||
make instal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package: | ||
name: fontconfig | ||
version: 2.10.93 | ||
|
||
source: | ||
fn: fontconfig-2.10.93.tar.bz2 | ||
url: http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.10.93.tar.bz2 | ||
md5: 0f8e5c63c2d6931626185c02802375a3 | ||
|
||
requirements: | ||
build: | ||
- freetype | ||
- libxml2 | ||
|
||
about: | ||
home: http://www.freedesktop.org/wiki/Software/fontconfig/ | ||
license: BSD |