OBS-URL: https://build.opensuse.org/request/show/765881 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/paflib?expand=0&rev=8
95 lines
2.9 KiB
RPMSpec
95 lines
2.9 KiB
RPMSpec
#
|
||
# spec file for package paflib
|
||
#
|
||
# Copyright (c) 2014 SUSE LINUX Products 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: paflib
|
||
%define lname libpaflib0
|
||
Version: 0.3
|
||
Release: 0
|
||
Summary: Exposes Power Architecture Facilities to userspace via an API
|
||
License: MIT
|
||
Group: Development/Libraries/C and C++
|
||
|
||
Url: https://github.com/paflib
|
||
Source: paflib-%{version}.tar.bz2
|
||
BuildRequires: libtool
|
||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
ExclusiveArch: ppc64 ppc64le
|
||
Patch1: paflib.no_return_nonvoid_conftest.patch
|
||
|
||
%description
|
||
PAFLib is a IBM written library which exposes Power Architecture Facilities
|
||
to userspace via an API. This includes the Data Stream Control Register Facility
|
||
(DSCR) and the Event-Based Branching facility (EBB). Linux kernel 3.9 has
|
||
exposed problem-state DSCR usage for ISA 2.06 (POWER7 – emulated) and ISA 2.07
|
||
(POWER8 – in hardware). Linux 3.10 has exposed the EBB facility.
|
||
|
||
%package -n %lname
|
||
Summary: Exposes Power Architecture Facilities to userspace via an API
|
||
Group: System/Libraries
|
||
|
||
%description -n %lname
|
||
PAFLib is a IBM written library which exposes Power Architecture Facilities
|
||
to userspace via an API. This includes the Data Stream Control Register Facility
|
||
(DSCR) and the Event-Based Branching facility (EBB). Linux kernel 3.9 has
|
||
exposed problem-state DSCR usage for ISA 2.06 (POWER7 – emulated) and ISA 2.07
|
||
(POWER8 – in hardware). Linux 3.10 has exposed the EBB facility.
|
||
|
||
%package devel
|
||
Summary: Development files for PAFLib
|
||
Group: Development/Libraries/C and C++
|
||
Requires: %lname = %version
|
||
|
||
%description devel
|
||
Contains header files for building with PAFLib.
|
||
|
||
%prep
|
||
%setup -q
|
||
%patch1 -p1
|
||
|
||
%build
|
||
./autogen.sh
|
||
# wants to configure in a separate build directory
|
||
mkdir paflib-build
|
||
cd paflib-build
|
||
%define _configure ../configure
|
||
%configure
|
||
make %{?_smp_mflags}
|
||
|
||
%install
|
||
cd paflib-build
|
||
make install DESTDIR="%buildroot"
|
||
rm -f "%buildroot/%_libdir"/*.la
|
||
rm -f "%buildroot/%{_datadir}/doc/libpaf"/ChangeLog.md
|
||
|
||
%post -n %lname -p /sbin/ldconfig
|
||
%postun -n %lname -p /sbin/ldconfig
|
||
|
||
%files -n %lname
|
||
%defattr(-,root,root)
|
||
%{_libdir}/libpaf*.so.0*
|
||
|
||
%files devel
|
||
%defattr(-,root,root,-)
|
||
%doc COPYING
|
||
%{_includedir}/paf
|
||
%{_libdir}/libpaf*.a
|
||
%{_libdir}/libpaf*.so
|
||
%{_mandir}/man3/*
|
||
|
||
%changelog
|