aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--termkey.pc.in9
2 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 90f3029..c6a1934 100644
--- a/Makefile
+++ b/Makefile
@@ -35,3 +35,5 @@ install:
install -d $(DESTDIR)$(LIBDIR)
install libtermkey.so $(DESTDIR)$(LIBDIR)/$(SONAME)
ln -sf $(SONAME) $(DESTDIR)$(LIBDIR)/libtermkey.so
+ install -d $(DESTDIR)$(LIBDIR)/pkgconfig
+ sed "s,@PREFIX@,$(PREFIX)," <termkey.pc.in >$(DESTDIR)$(LIBDIR)/pkgconfig/termkey.pc
diff --git a/termkey.pc.in b/termkey.pc.in
new file mode 100644
index 0000000..6e54e8e
--- /dev/null
+++ b/termkey.pc.in
@@ -0,0 +1,9 @@
+prefix=@PREFIX@
+libdir=${prefix}/lib
+includedir=${prefix}/include
+
+Name: termkey
+Description: Abstract terminal key input library
+Version: 0.1
+Libs: -L${libdir} -ltermkey
+Cflags: -I${includedir}