apache-rex/apache-rex.spec

56 lines
1.6 KiB
RPMSpec
Raw Normal View History

#
# spec file for package apache-rex
#
# Copyright (c) 2016 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: apache-rex
Version: 20170912
Release: 0
Summary: Script for Apache HTTPD Runnable Examples
License: Apache-2.0
Group: Documentation/Howto
Url: https://github.com/pgajdos/apache-rex
Source0: %{name}.tar.bz2
Requires: apache2-devel
Requires: curl
Requires: lsof
Requires: openssl
Requires: openssl-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
Runnable examples for Apache HTTP server. Can be used starting
point for examples, testcases and other inspiration.
%prep
%setup -q -n %{name}
%build
%install
mkdir -p %{buildroot}%{_bindir}
cp run-rex %{buildroot}%{_bindir}
mkdir -p %{buildroot}%{_docdir}/%{name}
cp -r */ LICENSE README.md contents %{buildroot}%{_docdir}/%{name}
%files
%defattr(-,root,root)
%{_bindir}/run-rex
%{_docdir}/%{name}
%changelog