Adrian Schröter
1403f7b963
OBS-URL: https://build.opensuse.org/request/show/49565 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/spec-cleaner?expand=0&rev=1
50 lines
1.4 KiB
RPMSpec
50 lines
1.4 KiB
RPMSpec
#
|
|
# spec file for package spec-cleaner (version 0.1)
|
|
#
|
|
# Copyright (c) 2010 Vincent Untz <vuntz@opensuse.org>
|
|
#
|
|
# 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: spec-cleaner
|
|
Version: 0.1
|
|
Release: 1
|
|
License: BSD 3-Clause
|
|
Summary: .spec file cleaner
|
|
Url: http://gitorious.org/opensuse/spec-cleaner
|
|
Group: Development/Tools/Other
|
|
Source0: spec-cleaner
|
|
Requires: python-base
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
|
|
%description
|
|
This script cleans spec file according to some arbitrary style guide. The
|
|
results it produces should always be checked by someone since it is not and
|
|
will never be perfect.
|
|
|
|
%prep
|
|
|
|
%build
|
|
|
|
%install
|
|
install -D -m0755 %{S:0} %{buildroot}%{_bindir}/spec-cleaner
|
|
|
|
%clean
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%{_bindir}/spec-cleaner
|
|
|
|
%changelog
|