cscope/cscope.spec

77 lines
2.1 KiB
RPMSpec

#
# spec file for package cscope
#
# Copyright (c) 2020 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
Name: cscope
Version: 15.9
Release: 0
Summary: Interactive Tool for Browsing C Source Code
License: BSD-3-Clause
Group: Development/Tools/Navigators
URL: http://cscope.sourceforge.net/
Source: http://sourceforge.net/projects/cscope/files/cscope/v%{version}/%{name}-%{version}.tar.gz
Patch1: cscope-null.patch
Patch2: cscope-15.7-gcc-warnings.patch
Patch3: cscope-15.7-vpath.patch
Patch4: cscope-15.8a-fix-bashisms.patch
Patch5: cscope-cleanup_on_sigterm.patch
Patch6: cscope-egrep.out.patch
Patch7: support-fun-as-params.patch
BuildRequires: bison
BuildRequires: flex
BuildRequires: ncurses-devel
BuildRequires: pkgconfig
%description
Cscope is an interactive, screen-oriented tool that allows the user to
browse through C source code files for specified elements of code.
%prep
%setup -q
%patch -P 1 -p1
%patch -P 2
%patch -P 3
%patch -P 4 -p1
%patch -P 5
%patch -P 6 -p1
%patch -P 7 -p1
%build
%configure
%make_build
%install
install -Dpm 0755 src/cscope \
%{buildroot}%{_bindir}/cscope
install -Dpm 0644 doc/cscope.1 \
%{buildroot}%{_mandir}/man1/cscope.1
install -Dpm 0755 contrib/xcscope/cscope-indexer \
%{buildroot}%{_bindir}/cscope-indexer
pushd contrib
%make_install
popd
%files
%license COPYING
%doc TODO ChangeLog AUTHORS README NEWS
%{_bindir}/cscope
%{_bindir}/ocs
%{_bindir}/cscope-indexer
%{_mandir}/man1/cscope.1%{?ext_man}
%changelog