diff options
author | Patrick Walton | 2008-10-09 08:54:10 -0700 |
---|---|---|
committer | Matt Colyer | 2008-10-09 08:54:10 -0700 |
commit | b8a485ee5b176c068e212dde3c9c3ffbf9d433f3 (patch) | |
tree | 5820de91660cae60442f2ff1df605877f0e5822a | |
parent | 341a1057910dcdc6461c7dd022e52e3d2fe05613 (diff) | |
download | libplist-b8a485ee5b176c068e212dde3c9c3ffbf9d433f3.tar.gz libplist-b8a485ee5b176c068e212dde3c9c3ffbf9d433f3.tar.bz2 |
Added a pkg-config file
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | libiphone-1.0.pc.in | 12 |
4 files changed, 17 insertions, 1 deletions
@@ -5,3 +5,4 @@ Martin Aumueller Christophe Fergeau Martin S. Paul Sladen +Patrick Walton diff --git a/Makefile.am b/Makefile.am index 2ab7661..4ce113c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,9 @@ AUTOMAKE_OPTIONS = foreign SUBDIRS = src include +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = libiphone-1.0.pc + doc: doxygen doxygen.cfg diff --git a/configure.ac b/configure.ac index 738846e..bfb0378 100644 --- a/configure.ac +++ b/configure.ac @@ -38,4 +38,4 @@ AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([strcasecmp strdup strerror strndup]) -AC_OUTPUT(Makefile src/Makefile include/Makefile) +AC_OUTPUT(Makefile src/Makefile include/Makefile libiphone-1.0.pc) diff --git a/libiphone-1.0.pc.in b/libiphone-1.0.pc.in new file mode 100644 index 0000000..c496464 --- /dev/null +++ b/libiphone-1.0.pc.in @@ -0,0 +1,12 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libiphone +Description: A library to communicate with the Lockdown server on the iPhone +Version: @VERSION@ +Requires: libxml-2.0 >= 2.6.30 libusb >= 0.1.12 glib-2.0 >= 2.14.1 gthread-2.0 >= 2.14.1 gnutls >= 1.6.3 libtasn1 >= 1.1 +Libs: -L${libdir} -liphone +Cflags: -I${includedir} + |