using pkg-config in a setup file added by retroj on Sat Jan 7 23:36:36 2012

(compile -s -O3 -d1 -lXft
         -C "`pkg-config --cflags xft`"
         -L "`pkg-config --libs xft`"
         "xft.scm" -j xft)
(compile -c -O3 -d1 -lXft
         -C "`pkg-config --cflags xft`"
         -L "`pkg-config --libs xft`"
         "xft.scm" -unit xft)
(compile -s -O3 -d0 "xft.import.scm"
         -C "`pkg-config --cflags xft`"
         -L "`pkg-config --libs xft`")

(install-extension
 'xft
 '("xft.o" "xft.so" "xft.import.so")
 '((version 0.1)
   (static "xft.o")))