File build-compare.spec of Package build-compare

#
# spec file for package build-compare
#
# 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/
#

%define author openSUSE
%define git_ref 327731305a0af7a154caacd125071943d5fa41af
%define git_short_ref %(c=%{git_ref}; echo ${c:0:7})

Name:           build-compare
Summary:        Build Result Compare Script
License:        GPL-2.0+
Group:          Development/Tools/Building
Url:            https://github.com/openSUSE/build-compare
Version:        2019.02.19.git.%{git_short_ref}
Release:        0
Source0:        https://github.com/%{author}/%{name}/archive/%{git_ref}/%{name}-%{git_ref}.tar.gz
%if 0%{?suse_version}
Requires:       bash
Requires:       cpio
Requires:       coreutils
Requires:       diffutils
Requires:       file
Requires:       gawk
Requires:       grep
Requires:       rpm
Requires:       sed
%endif
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildArch:      noarch
#!BuildIgnore:  build-compare

%description
This package contains scripts to find out if the build result differs
to a former build.


%prep
mkdir $RPM_BUILD_DIR/%name-%version
%setup -n %{name}-%{git_ref}

%build

%install
mkdir -p $RPM_BUILD_ROOT/usr/lib/build/ $RPM_BUILD_ROOT/%_defaultdocdir/%name
install -m 0755 \
        same-build-result.sh pkg-diff.sh functions.sh srpm-check.sh \
        $RPM_BUILD_ROOT/usr/lib/build/
install -m 0644 COPYING $RPM_BUILD_ROOT/%_defaultdocdir/%name/

%files
%defattr(-,root,root)
%doc %_defaultdocdir/%name
/usr/lib/build

%changelog