Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Pryor <jpryor@novell.com>2003-10-12 05:02:32 +0400
committerJonathan Pryor <jpryor@novell.com>2003-10-12 05:02:32 +0400
commit95b6672f5971d7033c77cd92108ede7c382ae6c7 (patch)
tree9644e1333aac85bb4262ee11fe13f2ecf8d6aefd /mono-tools.spec.in
parent1c9696406de469b686da8e389b52a519675adad0 (diff)
Update build system so that RPMs can be easily built.
svn path=/trunk/mono-tools/; revision=18895
Diffstat (limited to 'mono-tools.spec.in')
-rw-r--r--mono-tools.spec.in44
1 files changed, 44 insertions, 0 deletions
diff --git a/mono-tools.spec.in b/mono-tools.spec.in
new file mode 100644
index 00000000..1bc1f27f
--- /dev/null
+++ b/mono-tools.spec.in
@@ -0,0 +1,44 @@
+Summary: Tools for use with the Mono Runtime
+Name: mono-tools
+Version: @VERSION@
+Release: 1
+License: Various (X11, GPL)
+Group: Development/Tools
+Source: http://www.go-mono.com/archive/mono-tools-0.1.tar.gz
+URL: http://www.go-mono.com/
+BuildRoot: %{_tmppath}/%{name}-root
+Requires: mono, gtk-sharp
+BuildRequires: mono-devel
+Packager: Jonathan Pryor <jonpryor@vt.edu>
+
+%description
+A collection of tools and utilities for use with the Mono runtime environment.
+
+%prep
+%setup -q
+
+%build
+./configure
+make
+
+%install
+rm -rf %{buildroot}
+%makeinstall
+
+%clean
+rm -rf %{buildroot}
+
+%post
+
+%postun
+
+%files
+%defattr(-, root, root)
+%doc AUTHORS LICENSE MIT.X11 COPYING COPYING.LIB ChangeLog NEWS README
+%{_bindir}/type-reflector
+%{_bindir}/type-reflector.exe
+%{_bindir}/type-reflector.exe.config
+
+%changelog
+* Mon Oct 06 2003 Jonathan Pryor <jonpryor@vt.edu>
+- Initial RPM release.