You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
12 years ago
|
%global snapshot 20121008
|
||
|
Name: libecb
|
||
|
Version: 0.%{snapshot}
|
||
|
Release: 1%{?dist}
|
||
|
Summary: Compiler built-ins
|
||
|
Group: Development/Libraries
|
||
|
License: BSD
|
||
|
URL: http://software.schmorp.de/pkg/libecb
|
||
|
# Snapshot from CVS :pserver:anonymous@cvs.schmorp.de/schmorpforge libecb
|
||
|
Source0: %{name}-20121008.tar.xz
|
||
|
# Bug #863991, submitted to upstream
|
||
|
Patch0: Coro-6.09-Fix-a-typo-in-ecb.h.patch
|
||
|
BuildArch: noarch
|
||
|
Requires: glibc-headers
|
||
|
|
||
|
%description
|
||
|
This project delivers you many GCC built-ins, attributes and a number of
|
||
|
generally useful low-level functions, such as popcount, expect, prefetch,
|
||
|
noinline, assume, unreachable and so on.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n %{name}-%{snapshot}
|
||
|
%patch0 -p2 -b .bigendian
|
||
|
|
||
|
%build
|
||
|
# Keep empty %%build section for possible RPM hooks
|
||
|
|
||
|
%install
|
||
|
install -d %{buildroot}%{_includedir}
|
||
|
install -m 0644 -t %{buildroot}%{_includedir} *.h
|
||
|
|
||
|
%files
|
||
|
%doc Changes ecb.pod LICENSE README
|
||
|
%{_includedir}/*
|
||
|
|
||
|
%changelog
|
||
|
* Mon Oct 08 2012 Petr Pisar <ppisar@redhat.com> - 0.20121008-1
|
||
|
- CVS snapshot taken on 2012-10-08
|
||
|
- Fix for building on big-endian systems (bug #863991)
|
||
|
|