Blame opasadb/opasadb.spec

Packit 857059
# BEGIN_ICS_COPYRIGHT8 ****************************************
Packit 857059
# 
Packit 857059
# Copyright (c) 2015, Intel Corporation
Packit 857059
# 
Packit 857059
# Redistribution and use in source and binary forms, with or without
Packit 857059
# modification, are permitted provided that the following conditions are met:
Packit 857059
# 
Packit 857059
#     * Redistributions of source code must retain the above copyright notice,
Packit 857059
#       this list of conditions and the following disclaimer.
Packit 857059
#     * Redistributions in binary form must reproduce the above copyright
Packit 857059
#       notice, this list of conditions and the following disclaimer in the
Packit 857059
#       documentation and/or other materials provided with the distribution.
Packit 857059
#     * Neither the name of Intel Corporation nor the names of its contributors
Packit 857059
#       may be used to endorse or promote products derived from this software
Packit 857059
#       without specific prior written permission.
Packit 857059
# 
Packit 857059
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 857059
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 857059
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 857059
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 857059
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 857059
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 857059
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 857059
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 857059
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 857059
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 857059
# 
Packit 857059
# END_ICS_COPYRIGHT8   ****************************************
Packit 857059
Packit 857059
#[ICS VERSION STRING: unknown]
Packit 857059
Name: opasadb
Packit 857059
Version: 1.0.0
Packit 857059
Release: 1%{?dist}
Packit 857059
Summary: opasadb library and tools
Packit 857059
Packit 857059
Group: Applications/System
Packit 857059
License: Copyright (c) 2014  Intel Corporation All Rights Reserved
Packit 857059
Source0: %{name}-%{version}.tar.gz
Packit 857059
BuildRoot: %{_builddir}
Packit 857059
Vendor: Intel Corporation
Packit 857059
AutoReqProv: no
Packit 857059
Packit 857059
%description
Packit 857059
The %{name} is package that contains a library for easy access to the shared
Packit 857059
memory SA cache exported by distributed SA and a few tools that provide
Packit 857059
the capability to stress test the distributed SA, dump and query the SA
Packit 857059
cache, and generate jobs.
Packit 857059
Packit 857059
%package devel
Packit 857059
Summary: Headers file needed when building apps to use libopasadb.
Packit 857059
Requires: %{name} = %{version}-%{release}
Packit 857059
Group: System Environment/Daemons
Packit 857059
Packit 857059
%description devel
Packit 857059
To make use of the shared-memory SA cache, an application can call the
Packit 857059
functions exported by the libopasadb library.
Packit 857059
Packit 857059
%prep
Packit 857059
%setup -q -n %{name}-%{version}
Packit 857059
Packit 857059
%build
Packit 857059
#nothing to do because we copy pre-built files into SOURCES
Packit 857059
Packit 857059
%install
Packit 857059
# simply copy the files
Packit 857059
mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
Packit 857059
cp -pr opa_osd_dump ${RPM_BUILD_ROOT}%{_bindir}/
Packit 857059
cp -pr opa_osd_exercise ${RPM_BUILD_ROOT}%{_bindir}/
Packit 857059
cp -pr opa_osd_exercise_test.pl ${RPM_BUILD_ROOT}%{_bindir}/
Packit 857059
cp -pr opa_osd_perf ${RPM_BUILD_ROOT}%{_bindir}/
Packit 857059
cp -pr build_table.pl ${RPM_BUILD_ROOT}%{_bindir}/
Packit 857059
cp -pr opa_osd_query ${RPM_BUILD_ROOT}%{_bindir}/
Packit 857059
mkdir -p ${RPM_BUILD_ROOT}%{_libdir}
Packit 857059
cp -pr lib%{name}.so.%{version} ${RPM_BUILD_ROOT}%{_libdir}/
Packit 857059
mkdir -p ${RPM_BUILD_ROOT}%{_includedir}/infiniband
Packit 857059
cp -pr opasadb_path.h ${RPM_BUILD_ROOT}%{_includedir}/infiniband/
Packit 857059
cp -pr opasadb_route.h ${RPM_BUILD_ROOT}%{_includedir}/infiniband/
Packit 857059
cp -pr opasadb_route2.h ${RPM_BUILD_ROOT}%{_includedir}/infiniband/
Packit 857059
Packit 857059
%clean
Packit 857059
rm -rf $RPM_BUILD_ROOT
Packit 857059
Packit 857059
%files
Packit 857059
%defattr(-,root,root,-)
Packit 857059
%doc README
Packit 857059
%{_libdir}/lib*.*
Packit 857059
%{_bindir}/opa_osd_dump
Packit 857059
%{_bindir}/opa_osd_exercise
Packit 857059
%{_bindir}/opa_osd_exercise_test.pl
Packit 857059
%{_bindir}/opa_osd_perf
Packit 857059
%{_bindir}/build_table.pl
Packit 857059
%{_bindir}/opa_osd_query
Packit 857059
Packit 857059
%files devel
Packit 857059
%defattr(-,root,root,-)
Packit 857059
%{_includedir}/infiniband/opasadb_path.h
Packit 857059
%{_includedir}/infiniband/opasadb_route.h
Packit 857059
%{_includedir}/infiniband/opasadb_route2.h
Packit 857059
Packit 857059
Packit 857059
Packit 857059