# HG changeset patch # User Jamie Bullock # Date 1160388605 0 # Node ID 582330cfa6e5a462d892bdc2467f4c8172f8139b # Parent 1aec087ddfcabfa8d9ff114c872625263b33c642 Added pkgconfig support diff -r 1aec087ddfca -r 582330cfa6e5 AUTHORS --- a/AUTHORS Mon Oct 09 09:22:03 2006 +0000 +++ b/AUTHORS Mon Oct 09 10:10:05 2006 +0000 @@ -0,0 +1,1 @@ +Jamie Bullock diff -r 1aec087ddfca -r 582330cfa6e5 Makefile.am --- a/Makefile.am Mon Oct 09 09:22:03 2006 +0000 +++ b/Makefile.am Mon Oct 09 10:10:05 2006 +0000 @@ -1,2 +1,5 @@ SUBDIRS = src xtract examples @DOXYGEN@ +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = libxtract.pc + diff -r 1aec087ddfca -r 582330cfa6e5 configure.in --- a/configure.in Mon Oct 09 09:22:03 2006 +0000 +++ b/configure.in Mon Oct 09 10:10:05 2006 +0000 @@ -169,6 +169,7 @@ AC_SUBST(PD_SUFFIX) AC_SUBST(PD_SOURCES) -AC_CONFIG_FILES([doc/documentation.doxygen]) +AC_CONFIG_FILES([doc/documentation.doxygen + libxtract.pc]) AC_OUTPUT(Makefile src/Makefile xtract/Makefile doc/Makefile examples/Makefile examples/puredata/Makefile) diff -r 1aec087ddfca -r 582330cfa6e5 libxtract.pc.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxtract.pc.in Mon Oct 09 10:10:05 2006 +0000 @@ -0,0 +1,10 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libxtract +Description: A lightweight feature extraction library +Version: @VERSION@ +Libs: -L${libdir} -lxtract +Cflags: -I${includedir}