# spec file for ssdeep # # Copyright (c) 2014 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/3.0/ # # Please, preserve the changelog entries # Name: ssdeep Version: 2.13 Release: 1%{?dist}.art Summary: Compute context triggered piecewise hashes Group: Development/Tools License: GPLv2+ URL: http://ssdeep.sourceforge.net/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description ssdeep is a program for computing context triggered piecewise hashes (CTPH). Also called fuzzy hashes, CTPH can match inputs that have homologies. Such inputs have sequences of identical bytes in the same order, although bytes in between these sequences may be different in both content and length. %package devel Summary: Development files for libfuzzy Group: Development/Libraries Requires: %{name}-libs%{?_isa} = %{version}-%{release} %description devel The %{name}-devel package contains library and header files for developing applications that use libfuzzy. %package libs Summary: Runtime libfuzzy library Group: System Environment/Libraries %description libs The %{name}-libs package contains libraries needed by applications that use libfuzzy. %prep %setup -q # avoid autotools being re-run touch -r aclocal.m4 configure configure.ac %build %configure \ --disable-auto-search \ --disable-static # rpath removal sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} rm %{buildroot}%{_libdir}/libfuzzy.la %clean rm -rf %{buildroot} %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig %files %defattr(-,root,root,-) %doc AUTHORS %{_bindir}/%{name} %{_mandir}/man1/%{name}.* %files devel %defattr(-,root,root,-) %doc FILEFORMAT NEWS README TODO %{_includedir}/fuzzy.h %{_includedir}/edit_dist.h %{_libdir}/libfuzzy.so %files libs %defattr(-,root,root,-) %{!?_licensedir:%global license %%doc} %license COPYING %{_libdir}/libfuzzy.so.2* %changelog * Tue May 5 2015 Remi Collet - 2.13-1 - update to 2.13 * Sun Oct 26 2014 Remi Collet - 2.12-1 - update to 2.12 - fix license handling * Fri Sep 12 2014 Remi Collet - 2.11-1 - update to 2.11 * Wed Jan 22 2014 Remi Collet - 2.10-2 - cleanup build path (comment from review #1056460) * Wed Jan 22 2014 Remi Collet - 2.10-1 - initial package