File astyle.spec of Package astyle
#
# spec file for package astyle
#
# Copyright (c) 2017 SUSE LINUX 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: astyle
Version: 3.0.1
Release: 0
Summary: Source Code Indenter, Formatter, and Beautifier for C, C++, C# and Java
License: MIT
Group: Development/Tools/Other
Url: http://astyle.sourceforge.net/
Source: http://downloads.sourceforge.net/project/%{name}/%{name}/%{name}%%20%{version}/%{name}_%{version}_linux.tar.gz
BuildRequires: gcc-c++
%description
Artistic Style is a source code indenter, formatter, and beautifier for the C,
C++, C# and Java programming languages. It automatically re-indents and
re-formats C / C++ / C# / Java source files. It can be used from a command
line, or it can be incorporated as classes in another C++ program.
%prep
%setup -q -n %{name}
%build
export CFLAGS="%{optflags}"
export CXXFLAGS="%{optflags}"
make -C build/gcc astyled %{?_smp_mflags}
%install
install -Dpm 0755 build/gcc/bin/%{name}d \
%{buildroot}%{_bindir}/%{name}
mv doc html
chmod -x html/* *.md
%files
%defattr(-,root,root)
%doc LICENSE.md README.md html/
%{_bindir}/%{name}
%changelog