469a7c08eb8b66fd3f0f19476243d30de2276989
[oota-llvm.git] / llvm.spec.in
1 Summary: Static and JIT research compiler infrastructure
2 Name: llvm
3 Version: 1.5
4 Release: 0
5 License: U of Illinois/NCSA Open Source License
6 Group: Development/Languages
7 Source0: llvm.tar.gz
8 URL: http://llvm.cs.uiuc.edu/releases/index.html
9 #BuildRequires: llvm-gcc
10 # (someday...)
11 BuildRoot: %{_tmppath}/%{name}-root
12 Requires: /sbin/ldconfig
13
14 %description
15 LLVM is a compiler infrastructure designed for compile-time, link-time, runtime,
16 and "idle-time" optimization of programs from arbitrary programming languages.
17 LLVM is written in C++ and has been developed since 2000 at the
18 University of Illinois. It currently supports compilation of C and C++
19 programs, using front-ends derived from GCC 3.4. The compiler infrastructure
20 includes mirror sets of programming tools as well as libraries with equivalent
21 functionality.
22
23 %prep
24 %setup -q -n llvm
25
26 %build
27 ./configure \
28 --prefix=%{_prefix} \
29 --bindir=%{_bindir} \
30 --datadir=%{_datadir} \
31 --includedir=%{_includedir} \
32 --libdir=%{_libdir}
33 make
34
35 %install
36 rm -rf %{buildroot}
37 make install DESTDIR=%{buildroot}
38
39 %clean
40 rm -rf %{buildroot}
41
42 %post -p /sbin/ldconfig
43
44 %postun -p /sbin/ldconfig
45
46 %files
47 %defattr(-, root, root)
48 %doc CREDITS.TXT LICENSE.TXT README.txt docs/*.{html,css,gif,jpg} docs/CommandGuide
49 %{_bindir}/*
50 %{_libdir}/*.o
51 %{_libdir}/*.a
52 %{_libdir}/*.so
53 %{_includedir}/llvm
54
55 %changelog
56 * Fri May 13 2005 Reid Spencer
57 - Minor adjustments for the 1.5 release
58 * Mon Feb 09 2003 Brian R. Gaeke
59 - Initial working version of RPM spec file.
60