]> git.pld-linux.org Git - packages/flood.git/blame - flood.spec
- new (based on dag's spec). doesn't build here (needs apr1 updates?)
[packages/flood.git] / flood.spec
CommitLineData
355b8eda
ER
1Summary: Profile-driven HTTP load tester
2Name: flood
3Version: 0.4
4Release: 0.1
5License: Apache
6Group: Applications/Networking
7URL: http://httpd.apache.org/test/flood/
8Source0: http://www.apache.org/dist/httpd/flood/%{name}-%{version}.tar.gz
9# Source0-md5: c10abd6f46175ab54b554337525d576d
10Patch0: %{name}-libtool.patch
11BuildRequires: apr-devel
12BuildRequires: apr-util-devel
13BuildRequires: autoconf
14BuildRequires: libtool
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18Flood is a profile-driven HTTP load tester. It can be used to gather
19important performance matrics for your website.
20
21%prep
22%setup -q
23%patch0 -p1
24
25%build
26%{__libtoolize}
27%{__autoconf}
28%configure \
29 --enable-ssl \
30 --with-openssl="%{_includedir}/openssl" \
31 --with-capath="%{_datadir}/ssl/certs" \
32 --with-apr=/usr/bin/apr-1-config \
33 --with-apr-util=/usr/bin/apu-1-config
34
35%{__make} \
36 top_builddir=.
37
38%install
39rm -rf $RPM_BUILD_ROOT
40install -D flood $RPM_BUILD_ROOT%{_bindir}/flood
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%files
46%defattr(644,root,root,755)
47%doc CHANGES CONFIG DESIGN LICENSE STATUS examples/
48%attr(755,root,root) %{_bindir}/flood
This page took 1.28439 seconds and 4 git commands to generate.