source: projects/specs/trunk/m/mod_mono/mod_mono-vl.spec @ 3285

Revision 3285, 1.6 KB checked in by owa, 13 years ago (diff)

mono-2.10.1

Line 
1%define apxs /usr/bin/apxs
2%define httpd_modulesdir %(%{apxs} -q LIBEXECDIR)
3#define httpd_sysconfdir %(%{apxs} -q SYSCONFDIR)/conf.d
4%define httpd_sysconfdir %{_sysconfdir}/apache2/conf.d
5Summary: Run ASP.NET Pages on Unix with Apache and Mono
6Summary(ja): mod_mono は Apacheサーバの ASP.NET モジュールです
7Name: mod_mono
8Version: 2.10
9Release: 1%{?_dist_release}
10Url: http://go-mono.com/
11Source: %{name}-%{version}.tar.bz2
12License: Apache Software License
13Group: System Environment/Daemons
14BuildRequires: apache2-devel
15BuildRequires: apr-devel
16BuildRequires: mono-devel
17BuildRequires: pkgconfig
18Requires: xsp >= %{version}
19BuildRoot: %{_tmppath}/%{name}-%{version}-root
20Vendor: Project Vine
21Distribution: Vine Linux
22
23%description
24mod_mono is a module that interfaces Apache with Mono and allows
25running ASP.NET pages on Unix and Unix-like systems. To load the module
26into Apache, run the command "a2enmod mono" as root.
27
28
29%prep
30%setup
31
32%build
33%configure \
34        --with-remove-display \
35        --with-apxs=%{apxs} \
36        --with-apr-config=/usr/bin/apr-1-config \
37        ;
38%{__make}
39
40%install
41rm -rf $RPM_BUILD_ROOT
42make install DESTDIR=$RPM_BUILD_ROOT APXS_SYSCONFDIR="%{httpd_sysconfdir}"
43
44
45%clean
46rm -rf $RPM_BUILD_ROOT
47
48%files
49%defattr(-,root,root)
50%doc AUTHORS COPYING ChangeLog INSTALL NEWS README
51%{httpd_modulesdir}/*
52%config(noreplace) %{httpd_sysconfdir}/mod_mono.conf
53%{_mandir}/man8/mod_mono.8*
54
55%changelog
56* Sun Apr 03 2011 Shu KONNO <owa@bg.wakwak.com> 2.10-1
57- updated mod_mono to 2.10
58
59* Sat Jan 08 2011 Shu KONNO <owa@bg.wakwak.com> 2.8.2-1
60- updated mod_mono to 2.8.2
61
62* Tue Oct 12 2010 Shu KONNO <owa@bg.wakwak.com> 2.8-1
63- initial build for VineSeed
64
Note: See TracBrowser for help on using the repository browser.