From 00279f93a8b4f1fcc44fa69d4f64edd17f44d032 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Sat, 13 May 2017 00:15:31 +0200 Subject: community/libtermkey: build static library and add it to -dev --- community/libtermkey/build-static-lib.patch | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 community/libtermkey/build-static-lib.patch (limited to 'community/libtermkey/build-static-lib.patch') diff --git a/community/libtermkey/build-static-lib.patch b/community/libtermkey/build-static-lib.patch new file mode 100644 index 0000000000..842d9ac199 --- /dev/null +++ b/community/libtermkey/build-static-lib.patch @@ -0,0 +1,24 @@ +--- a/Makefile ++++ b/Makefile +@@ -70,6 +70,9 @@ + $(LIBRARY): $(OBJECTS) + $(LIBTOOL) --mode=link --tag=CC $(CC) -rpath $(LIBDIR) -version-info $(VERSION_CURRENT):$(VERSION_REVISION):$(VERSION_AGE) $(LDFLAGS) -o $@ $^ + ++libtermkey.a: $(OBJECTS) ++ $(LIBTOOL) --mode=link $(CC) -o $@ $^ ++ + demo: $(LIBRARY) demo.lo + $(LIBTOOL) --mode=link --tag=CC $(CC) -o $@ $^ + +@@ -112,9 +115,10 @@ + install -d $(DESTDIR)$(LIBDIR)/pkgconfig + sed "s,@LIBDIR@,$(LIBDIR),;s,@INCDIR@,$(INCDIR)," $(DESTDIR)$(LIBDIR)/pkgconfig/termkey.pc + +-install-lib: $(LIBRARY) ++install-lib: $(LIBRARY) libtermkey.a + install -d $(DESTDIR)$(LIBDIR) + $(LIBTOOL) --mode=install install libtermkey.la $(DESTDIR)$(LIBDIR)/libtermkey.la ++ $(LIBTOOL) --mode=install install libtermkey.a $(DESTDIR)$(LIBDIR)/libtermkey.a + + install-man: + install -d $(DESTDIR)$(MAN3DIR) -- cgit v1.2.3