1 | #
|
---|
2 | # Temporary libgcc package, until a complete GCC 4.5 bundle is made
|
---|
3 | #
|
---|
4 |
|
---|
5 | Summary: Various compilers (C, C++, Objective-C, Java, ...)
|
---|
6 | Name: gcc
|
---|
7 | Version: 4.5.2
|
---|
8 | Release: 2%{?dist}
|
---|
9 |
|
---|
10 | # libgcc, libgfortran, libmudflap, libgomp, libstdc++ and crtstuff have
|
---|
11 | # GCC Runtime Exception.
|
---|
12 | License: GPLv3+ and GPLv3+ with exceptions and GPLv2+ with exceptions
|
---|
13 | Group: Development/Languages
|
---|
14 | URL: http://gcc.gnu.org
|
---|
15 |
|
---|
16 | Source: libgcc4core.zip
|
---|
17 |
|
---|
18 | %description
|
---|
19 | The gcc package contains the GNU Compiler Collection version 4.4.
|
---|
20 | You'll need this package in order to compile C code.
|
---|
21 |
|
---|
22 | %package -n libgcc432
|
---|
23 | Summary: GCC version 4.32 shared support library
|
---|
24 | Group: System Environment/Libraries
|
---|
25 |
|
---|
26 | %description -n libgcc432
|
---|
27 | This package contains GCC shared support library which is needed
|
---|
28 | e.g. for exception handling support.
|
---|
29 |
|
---|
30 | %package -n libgcc433
|
---|
31 | Summary: GCC version 4.33 shared support library
|
---|
32 | Group: System Environment/Libraries
|
---|
33 |
|
---|
34 | %description -n libgcc433
|
---|
35 | This package contains GCC shared support library which is needed
|
---|
36 | e.g. for exception handling support.
|
---|
37 |
|
---|
38 | %package -n libgcc434
|
---|
39 | Summary: GCC version 4.34 shared support library
|
---|
40 | Group: System Environment/Libraries
|
---|
41 |
|
---|
42 | %description -n libgcc434
|
---|
43 | This package contains GCC shared support library which is needed
|
---|
44 | e.g. for exception handling support.
|
---|
45 |
|
---|
46 | %package -n libgcc440
|
---|
47 | Summary: GCC version 4.40 shared support library
|
---|
48 | Group: System Environment/Libraries
|
---|
49 |
|
---|
50 | %description -n libgcc440
|
---|
51 | This package contains GCC shared support library which is needed
|
---|
52 | e.g. for exception handling support.
|
---|
53 |
|
---|
54 | %package -n libgcc441
|
---|
55 | Summary: GCC version 4.41 shared support library
|
---|
56 | Group: System Environment/Libraries
|
---|
57 |
|
---|
58 | %description -n libgcc441
|
---|
59 | This package contains GCC shared support library which is needed
|
---|
60 | e.g. for exception handling support.
|
---|
61 |
|
---|
62 | %package -n libgcc442
|
---|
63 | Summary: GCC version 4.42 shared support library
|
---|
64 | Group: System Environment/Libraries
|
---|
65 |
|
---|
66 | %description -n libgcc442
|
---|
67 | This package contains GCC shared support library which is needed
|
---|
68 | e.g. for exception handling support.
|
---|
69 |
|
---|
70 | %package -n libgcc444
|
---|
71 | Summary: GCC version 4.44 shared support library
|
---|
72 | Group: System Environment/Libraries
|
---|
73 |
|
---|
74 | %description -n libgcc444
|
---|
75 | This package contains GCC shared support library which is needed
|
---|
76 | e.g. for exception handling support.
|
---|
77 |
|
---|
78 | %package -n libgcc445
|
---|
79 | Summary: GCC version 4.45 shared support library
|
---|
80 | Group: System Environment/Libraries
|
---|
81 |
|
---|
82 | %description -n libgcc445
|
---|
83 | This package contains GCC shared support library which is needed
|
---|
84 | e.g. for exception handling support.
|
---|
85 |
|
---|
86 | %package -n libgcc452
|
---|
87 | Summary: GCC version 4.5 shared support library
|
---|
88 | Group: System Environment/Libraries
|
---|
89 |
|
---|
90 | %description -n libgcc452
|
---|
91 | This package contains GCC shared support library which is needed
|
---|
92 | e.g. for exception handling support.
|
---|
93 |
|
---|
94 | %package -n libgcc453
|
---|
95 | Summary: GCC version 4.53 shared support library
|
---|
96 | Group: System Environment/Libraries
|
---|
97 |
|
---|
98 | %description -n libgcc453
|
---|
99 | This package contains GCC shared support library which is needed
|
---|
100 | e.g. for exception handling support.
|
---|
101 |
|
---|
102 | %prep
|
---|
103 |
|
---|
104 | %setup -q -c -n "libgcc-%{version}"
|
---|
105 |
|
---|
106 | %build
|
---|
107 |
|
---|
108 | %install
|
---|
109 |
|
---|
110 | rm -rf "%{buildroot}"
|
---|
111 |
|
---|
112 | mkdir -p "%{buildroot}/%{_libdir}/"
|
---|
113 | cp -dp *.dll "%{buildroot}/%{_libdir}/"
|
---|
114 |
|
---|
115 | %clean
|
---|
116 | rm -rf "%{buildroot}"
|
---|
117 |
|
---|
118 |
|
---|
119 | %files -n libgcc432
|
---|
120 | %defattr(-,root,root,-)
|
---|
121 | %{_libdir}/gcc432.dll
|
---|
122 | %doc COPYING*
|
---|
123 |
|
---|
124 | %files -n libgcc433
|
---|
125 | %defattr(-,root,root,-)
|
---|
126 | %{_libdir}/gcc433.dll
|
---|
127 | %doc COPYING*
|
---|
128 |
|
---|
129 | %files -n libgcc434
|
---|
130 | %defattr(-,root,root,-)
|
---|
131 | %{_libdir}/gcc434.dll
|
---|
132 | %doc COPYING*
|
---|
133 |
|
---|
134 | %files -n libgcc440
|
---|
135 | %defattr(-,root,root,-)
|
---|
136 | %{_libdir}/gcc440.dll
|
---|
137 | %doc COPYING*
|
---|
138 |
|
---|
139 | %files -n libgcc441
|
---|
140 | %defattr(-,root,root,-)
|
---|
141 | %{_libdir}/gcc441.dll
|
---|
142 | %doc COPYING*
|
---|
143 |
|
---|
144 | %files -n libgcc442
|
---|
145 | %defattr(-,root,root,-)
|
---|
146 | %{_libdir}/gcc442.dll
|
---|
147 | %doc COPYING*
|
---|
148 |
|
---|
149 | %files -n libgcc444
|
---|
150 | %defattr(-,root,root,-)
|
---|
151 | %{_libdir}/gcc444.dll
|
---|
152 | %doc COPYING*
|
---|
153 |
|
---|
154 | %files -n libgcc445
|
---|
155 | %defattr(-,root,root,-)
|
---|
156 | %{_libdir}/gcc445.dll
|
---|
157 | %doc COPYING*
|
---|
158 |
|
---|
159 | %files -n libgcc452
|
---|
160 | %defattr(-,root,root,-)
|
---|
161 | %{_libdir}/gcc452.dll
|
---|
162 | %doc COPYING*
|
---|
163 |
|
---|
164 | %files -n libgcc453
|
---|
165 | %defattr(-,root,root,-)
|
---|
166 | %{_libdir}/gcc453.dll
|
---|
167 | %doc COPYING*
|
---|
168 |
|
---|
169 | %changelog
|
---|