mirror of
https://abf.rosa.ru/djam/codelite.git
synced 2025-02-23 14:42:55 +00:00
67 lines
1.6 KiB
RPMSpec
67 lines
1.6 KiB
RPMSpec
Summary: A powerful open-source, cross platform code editor for C/C++
|
|
Name: codelite
|
|
Version: 6.0.1
|
|
Release: 2
|
|
License: GPLv2+
|
|
Group: Development/Tools
|
|
Url: http://www.codelite.org
|
|
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
|
|
Source10: %{name}.rpmlintrc
|
|
Patch0: codelite-6.0.1-desktop.patch
|
|
Patch1: codelite-6.0.1-linkage.patch
|
|
Patch2: codelite-5.4-libdir.patch
|
|
BuildRequires: cmake
|
|
BuildRequires: wxgtku3.0-devel
|
|
BuildRequires: pkgconfig(freetype2)
|
|
BuildRequires: pkgconfig(gtk+-2.0)
|
|
BuildRequires: pkgconfig(libssh)
|
|
Requires: wxgtk3.0
|
|
Requires: xterm
|
|
|
|
%description
|
|
CodeLite uses a sophisticated, yet intuitive interface which allows
|
|
users to easily create, build and debug complex projects.
|
|
|
|
%files -f %{name}.lang
|
|
%doc AUTHORS LICENSE COPYING
|
|
%{_bindir}/clg++
|
|
%{_bindir}/clgcc
|
|
%{_bindir}/codelite
|
|
%{_bindir}/codelite-cc
|
|
%{_bindir}/codelite-clang
|
|
%{_bindir}/codelite-echo
|
|
%{_bindir}/codelite-make
|
|
%{_bindir}/codelite-terminal
|
|
%{_bindir}/codelite_indexer
|
|
%{_bindir}/codelite_cppcheck
|
|
%{_bindir}/codelite_fix_files
|
|
%{_bindir}/codelite_exec
|
|
%{_bindir}/codelite_kill_children
|
|
%{_bindir}/codelite_xterm
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/%{name}
|
|
%{_libdir}/%{name}/
|
|
%{_mandir}/man1/*.1*
|
|
|
|
#----------------------------------------------------------------------------
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
|
|
%build
|
|
%cmake \
|
|
-DPREFIX:PATH=%{_prefix} \
|
|
-DCL_INSTALL_LIBDIR=%{_lib}
|
|
%make
|
|
|
|
%install
|
|
%makeinstall_std -C build
|
|
|
|
%find_lang %{name}
|
|
|
|
# To fix unstripped-binary-or-object
|
|
chmod 0755 %{buildroot}%{_libdir}/%{name}/*.so
|
|
|