honggfuzz/honggfuzz.spec
Martin Pluskal daafd22af4 Accepting request 579535 from home:jubalh:branches:devel:tools
- Update to version 1.5:
  * Persistent fuzzing now works with MacOS-X
  * Fixed some examples/ to make it work with MacOS-X
  * Should compile cleanly with newer MacOS-X versions
- Changes from version 1.4:
  * Socketfuzzer by @dobin
  * TCP fuzzer (HonggFuzzer NetDriver) in libhfnetdriver
  * Display: changed layout a bit
  * Better examples/ dir: Apache HTTP, ISC Bind
  * Added persistent and netdriver signatures
  * Added missing symbols for newer -fsanitize-coverage (const)
  * Changed internal structures (global vs run)
- Remove honggfuzz-binutils_2.29.patch: contained in release

OBS-URL: https://build.opensuse.org/request/show/579535
OBS-URL: https://build.opensuse.org/package/show/devel:tools/honggfuzz?expand=0&rev=12
2018-02-23 14:54:45 +00:00

53 lines
1.7 KiB
RPMSpec

#
# spec file for package honggfuzz
#
# Copyright (c) 2018 SUSE LINUX 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: honggfuzz
Version: 1.5
Release: 0
Summary: Security-oriented fuzzer with various analysis options
License: Apache-2.0
Group: Development/Tools/Other
Url: https://google.github.io/honggfuzz/
Source: https://github.com/google/honggfuzz/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
BuildRequires: binutils-devel
BuildRequires: libunwind-devel
BuildRequires: zlib-devel
%description
Security-oriented fuzzer with powerful analysis options. Supports
evolutionary, feedback-driven fuzzing based on code coverage
(software and hardware).
%prep
%setup -q
%build
export CFLAGS="%{optflags}"
make %{?_smp_mflags} ARCH_LDFLAGS="-L/usr/local/include -L/usr/include -lpthread -lunwind-ptrace -lunwind-generic -lbfd -lopcodes -lrt -liberty -lz -ldl"
%install
install -D -p -m 0755 %{name} \
%{buildroot}%{_bindir}/%{name}
%files
%defattr(-,root,root)
%doc COPYING CHANGELOG CONTRIBUTING README.md
%{_bindir}/%{name}
%changelog