Skip to content

Commit

Permalink
Updating the package installer scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
apconole committed Mar 4, 2012
1 parent 1dc5556 commit 02db6f9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
2 changes: 1 addition & 1 deletion debfile
@@ -1,4 +1,4 @@
Package: Simple-Fuzzer
Package: simple-fuzzer
Version: VERSION
Architecture: ARCHITECTURE
Maintainer: MAINTAINER
Expand Down
36 changes: 36 additions & 0 deletions simple-fuzzer.spec
@@ -0,0 +1,36 @@
Summary: A simple fuzz test-case builder
Name: simple-fuzzer
Version: VERSION
Release: RELEASE
Copyright: BSD
Group: Applications/System
URL: http://aconole.brad-x.com/programs/sfuzz.html
Source: http://aconole.brad-x.com/files/sfuzz-%{version}-dist/sfuzz-%{version}.%{release}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}.%{release}-root
BuildRequires: gcc-c++

%description
Simple-Fuzzer (sfuzz) is a simplistic fuzz test case generator. It is a generation-based fuzzer.

%prep
%setup -q

%build
%configure --force-symbols --enable-snoop
%{__make}

%install
%{__rm} -rf %{buildroot}
%makeinstall

%clean
${__rm} -rf %{buildroot}

%files
%{_bindir}/*
%{_datadir}/sfuzz-db


%changelog
* Sat Mar 3 2012 Aaron Conole - 0.7.0
- First RPM spec build

0 comments on commit 02db6f9

Please sign in to comment.