0d6b7b1b22
After discussion with scarabeus, we have agreed to use %_datadir macro even if user change it (and possibly fail this macro) OBS-URL: https://build.opensuse.org/request/show/205978 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/cmake?expand=0&rev=129
44 lines
1.9 KiB
Plaintext
44 lines
1.9 KiB
Plaintext
#
|
|
# Macros for cmake
|
|
#
|
|
%__cmake %{_bindir}/cmake
|
|
%_cmake_debug %{?with_debug:debug}%{?!with_debug:release}
|
|
|
|
%cmake \
|
|
CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
|
|
CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \
|
|
FFLAGS="${FFLAGS:-%optflags%{?_fmoddir: -I%_fmoddir}}" ; export FFLAGS ; \
|
|
find . -name CMakeLists.txt \\\
|
|
-exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_BUILD_TYPE.*)/{s/^/#IGNORE /g}' {} + \\\
|
|
-exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_COLOR_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \\\
|
|
-exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_INSTALL_PREFIX.*)/{s/^/#IGNORE /g}' {} + \\\
|
|
-exec sed -i -e '/^[[:space:]]*[sS][eE][tT][[:space:]]*([[:space:]]*CMAKE_VERBOSE_MAKEFILE.*)/{s/^/#IGNORE /g}' {} + \
|
|
mkdir -p build \
|
|
cd build \
|
|
%define enable_debug 1 \
|
|
%{?_enable_debug: %{expand: %%global enable_debug 1}} \
|
|
%__cmake .. \\\
|
|
-DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \\\
|
|
-DCMAKE_INSTALL_LIBDIR:PATH=%{_libdir} \\\
|
|
-DINCLUDE_INSTALL_DIR:PATH=%{_includedir} \\\
|
|
-DLIB_INSTALL_DIR:PATH=%{_libdir} \\\
|
|
-DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \\\
|
|
-DSHARE_INSTALL_PREFIX:PATH=%{_datadir} \\\
|
|
-DCMAKE_BUILD_TYPE=%{_cmake_debug} \\\
|
|
%if "%{?_lib}" == "lib64" \
|
|
-DLIB_SUFFIX=64 \\\
|
|
%endif \
|
|
-DCMAKE_SKIP_RPATH:BOOL=ON \\\
|
|
-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \\\
|
|
-DBUILD_SHARED_LIBS:BOOL=ON \\\
|
|
-DBUILD_STATIC_LIBS:BOOL=OFF \\\
|
|
-DCMAKE_COLOR_MAKEFILE:BOOL=OFF \\\
|
|
-DCMAKE_INSTALL_DO_STRIP:BOOL=OFF \\\
|
|
-DCMAKE_MODULES_INSTALL_DIR=%{_datadir}/cmake/Modules \\\
|
|
-DCMAKE_USER_MAKE_RULES_OVERRIDE="%{_datadir}/cmake/Modules/opensuse_rules.cmake"
|
|
|
|
%cmake_install \
|
|
cd build \
|
|
make DESTDIR=%{buildroot} install/fast \
|
|
cd ..
|