cmake/cmake-gui.spec

99 lines
2.7 KiB
RPMSpec
Raw Normal View History

#
# spec file for package cmake-gui
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: cmake-gui
Version: 3.0.0
Release: 0
%define rversion 3.0.0
Url: http://www.cmake.org/
Source0: http://www.cmake.org/files/v3.0/cmake-%{rversion}.tar.gz
Summary: CMake graphical user interface
License: BSD-3-Clause
Group: Development/Tools/Building
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version}
BuildRequires: fdupes
%if 0%{?sles_version} != 10
BuildRequires: libarchive-devel
%endif
BuildRequires: libexpat-devel
%else
BuildRequires: expat-devel
%endif
BuildRequires: curl-devel
BuildRequires: gcc-c++
%if 0%{?suse_version} >= 1320
BuildRequires: pkgconfig(Qt5Widgets)
%else
BuildRequires: libqt4-devel
%endif
BuildRequires: openssl-devel
BuildRequires: update-desktop-files
BuildRequires: zlib-devel
BuildRequires: pkgconfig(bzip2)
Requires: cmake
%description
This is a Graphical User Interface for CMake, a cross-platform,
open-source build system.
%prep
%setup -q -n cmake-%{rversion}
%build
EXTRA_FLAGS="--qt-gui"
export CXXFLAGS="$RPM_OPT_FLAGS"
export CFLAGS="$CXXFLAGS"
./configure \
--prefix=%{_prefix} \
--datadir=/share/cmake \
--docdir=/share/doc/packages/cmake \
--mandir=/share/man \
%if 0%{?suse_version} && !0%{?sles_version}
--system-libs \
%else
--system-curl \
--system-expat \
--system-zlib \
--system-bzip2 \
--no-system-libarchive \
%endif
--parallel=0%jobs \
--qt-gui
make VERBOSE=1 %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install
mkdir -p %{buildroot}%{_libdir}/cmake
%suse_update_desktop_file CMake Development IDE Tools Qt
# delete files that belong to the 'cmake' package
rm -rf %{buildroot}/usr/bin/{cpack,cmake,ctest}
rm -rf %{buildroot}/usr/share/cmake
rm -rf %{buildroot}/usr/share/aclocal/cmake.m4
rm -rf %{buildroot}/usr/share/doc/packages/cmake
%files
%defattr(-,root,root)
%{_bindir}/cmake-gui
%{_datadir}/applications/CMake.desktop
%{_datadir}/mime/packages/cmakecache.xml
%{_datadir}/pixmaps/CMakeSetup32.png
%changelog