Compare commits
No commits in common. "rawhide" and "f44" have entirely different histories.
1 changed files with 14 additions and 4 deletions
|
|
@ -16,9 +16,8 @@ Source: %{url}/archive/%{commit}/xxhashct-%{commit}.tar.gz
|
|||
# Fixes compatibility with CMake 4.
|
||||
Patch: %{url}/pull/5.patch
|
||||
|
||||
BuildSystem: cmake
|
||||
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: cmake
|
||||
# For tests:
|
||||
BuildRequires: xxhash-devel
|
||||
|
||||
|
|
@ -47,10 +46,21 @@ The xxhashct-devel package contains libraries and header files for developing
|
|||
applications that use xxhashct.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -n xxhashct-%{commit} -p1
|
||||
|
||||
|
||||
%conf
|
||||
%cmake
|
||||
|
||||
|
||||
%build
|
||||
%cmake_build
|
||||
|
||||
|
||||
%install
|
||||
# The upstream CMake build system only builds tests.
|
||||
install -D --preserve-timestamps --mode=0644 \
|
||||
--target='%{buildroot}%{_includedir}' xxh32.hpp xxh64.hpp
|
||||
install -D -p -m 0644 -t '%{buildroot}%{_includedir}' xxh32.hpp xxh64.hpp
|
||||
|
||||
|
||||
%check
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue