fixed warning
[mono.git] / mcs / mcs.spec
1 Summary: The mono c# compiler
2 Name: mcs-%{LABEL}
3 Version: 0.14
4 Release: 0
5 License: GPL
6 Group: Development/Tools
7 Source0: http://www.go-mono.com/archive/mcs-%{LABEL}.tar.gz
8 Source1: mcs.sh
9 URL: http://www.go-mono.com/
10 BuildRoot: %{_tmppath}/%{name}-root
11 Packager: Miguel de Icaza (miguel@ximian.com)
12 BuildArch: noarch
13 Requires: mono, mono-classes
14 BuildRequires: mono, mono-classes, mcs
15
16 %description
17 The Mono C# Compiler.
18
19 %package -n mono-classes-%{LABEL}
20 Summary: The .NET compatible mono class libraries
21 Group: System Environment/Base
22 License: X11
23
24 %description -n mono-classes-%{LABEL}
25 Mono runtime class libraries.
26
27 %prep
28 %setup -n mcs-%{LABEL}
29
30 %build
31 make -f makefile.gnu
32
33 %install
34 rm -rf %{buildroot}
35 make -f makefile.gnu install prefix=$RPM_BUILD_ROOT%{_prefix}
36 install %{SOURCE1} $RPM_BUILD_ROOT/%{_bindir}/mcs
37
38 %clean
39 rm -rf %{buildroot}
40
41 %files
42 %defattr(-, root, root)
43 %doc AUTHORS ChangeLog INSTALL README
44 %{_bindir}/mcs
45 %{_bindir}/*.exe
46 %{_libdir}/NUnitCore_mono.dll
47
48 %files -n mono-classes-%{LABEL}
49 %defattr(-, root, root)
50 %{_libdir}/corlib.dll
51 %{_libdir}/System*.dll
52
53 %changelog
54 * Tue Aug 20 2002 Miguel de Icaza <miguel@ximian.com>
55 Small fixes
56
57 * Mon Aug 19 2002 Daniel Resare <noa@resare.com>
58 - Initial RPM release.