"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 # RPM Spec file for mod_sendmail
2
3 %define name mod_sendmail
4 %define summary Apache mod_sendmail module
5 %define license ASL 2.0
6 %define version @PACKAGE_VERSION@
7 %define release 1
8 %define group Web/Applications
9 %define source %{name}-%{version}.tar.bz2
10 %define packager Andrew Rogers
11 %define buildroot %{_builddir}/%{name}-root
12 %define modroot %{_libdir}/httpd/modules
13
14 Name: %{name}
15 Version: %{version}
16 Release: %{release}
17 Packager: %{packager}
18 Summary: %{summary}
19 License: %{license}
20 Group: %{group}
21 Source: %{source}
22 Prefix: %{_prefix}
23 Buildroot: %{buildroot}
24 Requires: httpd
25 URL: http://mailservice.sf.net/
26
27 %description
28 The Apache mod_sendmail module provides a mechanism to expose sendmail via
29 a restful interface.
30
31 %prep
32 %setup -q
33 %build
34 %configure
35 make
36
37 %install
38 rm -rf $RPM_BUILD_ROOT
39 make install DESTDIR=$RPM_BUILD_ROOT
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43 %files
44 %{modroot}/mod_sendmail.so
45 %attr(0644,root,root) %{_docdir}/mod_sendmail/README
46 %attr(0644,root,root) %{_docdir}/mod_sendmail/COPYING
47