Add arpackSolver.pc

This commit is contained in:
Kyle Guinn
2020-11-23 22:16:41 -06:00
parent 93a3016fc5
commit a583f7d6a5
7 changed files with 19 additions and 1 deletions
+1
View File
@@ -17,6 +17,7 @@ libtool
.deps/
arpack.pc
parpack.pc
arpackSolver.pc
arpackdef.h
arpackicb.h
arpack-ng-config.cmake
+1 -1
View File
@@ -32,7 +32,7 @@ arpack-ng - 3.8.0
* [BUG FIX]: fix 'eval: Syntax error: "(" unexpected' error at build time.
* Only build shared libraries by default. To build static libraries, use
--enable-static (autotools) or -DBUILD_SHARED_LIBS=OFF (cmake).
* Add parpack.pc.
* Add parpack.pc and arpackSolver.pc.
[ David Schwörer ]
* Support of gfortran 10
+2
View File
@@ -707,6 +707,7 @@ string(REPLACE ";" " " PARPACK_PC_LIBS_PRIVATE "${PARPACK_PC_LIBS_PRIVATE}")
configure_file(SRC/arpack.pc.in "${PROJECT_BINARY_DIR}/SRC/arpack${LIBSUFFIX}.pc" @ONLY)
configure_file(PARPACK/SRC/MPI/parpack.pc.in "${PROJECT_BINARY_DIR}/PARPACK/SRC/MPI/parpack${LIBSUFFIX}.pc" @ONLY)
configure_file(EXAMPLES/MATRIX_MARKET/arpackSolver.pc.in "${PROJECT_BINARY_DIR}/EXAMPLES/MATRIX_MARKET/arpackSolver.pc" @ONLY)
install(TARGETS arpack
@@ -734,6 +735,7 @@ if(ICB)
endif()
if (ICBEXMM)
install(FILES EXAMPLES/MATRIX_MARKET/arpackSolver.hpp DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/arpack)
install(FILES "${PROJECT_BINARY_DIR}/EXAMPLES/MATRIX_MARKET/arpackSolver.pc" DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
endif()
endif()
+1
View File
@@ -14,6 +14,7 @@ arpackmm_SOURCES = arpackmm.cpp
if ICBEXMM
pkginclude_HEADERS = arpackSolver.hpp
pkgconfig_DATA = arpackSolver.pc
endif
CLEANFILES = \
+10
View File
@@ -0,0 +1,10 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
includedir=@includedir@
Name: arpackSolver
Description: Utility to test arpack with matrix market files
Version: @PACKAGE_VERSION@
URL: @PACKAGE_URL@
Requires: arpack, eigen3 >= 3.3
Cflags: -I${includedir}/arpack
+3
View File
@@ -10,6 +10,9 @@ endif
if ICB
AM_DISTCHECK_CONFIGURE_FLAGS += --enable-icb
endif
if ICBEXMM
AM_DISTCHECK_CONFIGURE_FLAGS += --enable-icb-exmm
endif
SUBDIRS = .
if ICB
+1
View File
@@ -262,6 +262,7 @@ AC_CONFIG_FILES([
], [], [LIBSUFFIX="$LIBSUFFIX"])
AC_CONFIG_FILES([
EXAMPLES/MATRIX_MARKET/arpackSolver.pc
arpackdef.h
arpackicb.h
arpack-ng-config-version.cmake