diff -Nru libcxl-1.4/debian/changelog libcxl-1.4/debian/changelog --- libcxl-1.4/debian/changelog 2016-05-30 04:50:27.000000000 -0400 +++ libcxl-1.4/debian/changelog 2016-06-15 13:49:20.000000000 -0400 @@ -1,3 +1,9 @@ +libcxl (1.4-1ubuntu1) yakkety; urgency=medium + + * Include static library in the -dev package LP: #1590503 + + -- Breno Leitao Wed, 15 Jun 2016 13:44:40 -0400 + libcxl (1.4-1) unstable; urgency=medium * Initial release (Closes: #813592) diff -Nru libcxl-1.4/debian/libcxl-dev.install libcxl-1.4/debian/libcxl-dev.install --- libcxl-1.4/debian/libcxl-dev.install 2016-05-30 04:47:33.000000000 -0400 +++ libcxl-1.4/debian/libcxl-dev.install 2016-06-15 13:53:26.000000000 -0400 @@ -1,2 +1,3 @@ usr/include/* usr/lib/*/lib*.so +usr/lib/*/lib*.a diff -Nru libcxl-1.4/debian/patches/add_static_libraries_during_install.patch libcxl-1.4/debian/patches/add_static_libraries_during_install.patch --- libcxl-1.4/debian/patches/add_static_libraries_during_install.patch 1969-12-31 19:00:00.000000000 -0500 +++ libcxl-1.4/debian/patches/add_static_libraries_during_install.patch 2016-06-15 13:51:18.000000000 -0400 @@ -0,0 +1,18 @@ +Description: Install static libraries also + +Currently libcxl static library is being generated but not being +installed which causes some problems. + +Patch already submitted upstream at: +https://github.com/ibm-capi/libcxl/pull/18 + +--- libcxl-1.4.orig/Makefile ++++ libcxl-1.4/Makefile +@@ -58,6 +58,7 @@ install: all + mkdir -p $(DESTDIR)$(includedir) + install -m 0755 $(LIBNAME) $(DESTDIR)$(libdir)/ + cp -d libcxl.so $(LIBSONAME) $(DESTDIR)$(libdir)/ ++ cp -d libcxl.a $(LIBSONAME) $(DESTDIR)$(libdir)/ + install -m 0644 libcxl.h $(DESTDIR)$(includedir)/ + + .PHONY: clean all install diff -Nru libcxl-1.4/debian/patches/series libcxl-1.4/debian/patches/series --- libcxl-1.4/debian/patches/series 2016-05-30 10:06:44.000000000 -0400 +++ libcxl-1.4/debian/patches/series 2016-06-15 13:26:21.000000000 -0400 @@ -1 +1,2 @@ create-LIBSONAME-link.patch +add_static_libraries_during_install.patch