"Fossies" - the Fresh Open Source Software Archive

Member "mod_sendmail-1.1.0/mod_sendmail.spec" (6 May 2014, 1036 Bytes) of package /linux/www/apache_httpd_modules/mod_sendmail-1.1.0.tar.bz2:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) RPM Spec source code syntax highlighting (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   1.1.0
    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