source: spec/trunk/SPECS/libc.spec@ 63

Last change on this file since 63 was 11, checked in by Yuri Dario, 15 years ago

spec: initial import for base .spec files.

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1
2Name: libc
3License: BSD; GPL v2 or later; LGPL v2.1 or later
4Summary: Standard Shared Libraries
5Group: System/Libraries
6Version: 0.6.3
7Release: 1
8Url: http://svn.netlabs.org/libc
9
10BuildRoot: %{_tmppath}/%{name}-%{version}-build
11Source: libc-%{version}.zip
12
13%description
14kLIBC is a C runtime library in which the coder is exploring The Single Unix
15Specification (SUS) and various *BSD, Sun and Linux interfaces used in 'portable'
16software. While implementing SUS completely and providing a great range of special
17BSD, Sun and Linux APIs is a kind of ultimate goal, the main focus is on what is
18interesting to play with and what is requested by porters using kLIBC.
19
20
21%package devel
22License: BSD; GPL v2 or later; LGPL v2.1 or later
23Summary: Include Files and Libraries Mandatory for Development
24Group: Development/Libraries/C and C++
25Requires: libc = %{version}
26
27
28%description devel
29These libraries are needed to develop programs which use the standard C
30library.
31
32
33%prep
34%setup -q -n libc-%{version}
35
36%install
37rm -rf $RPM_BUILD_ROOT
38mkdir -p %{buildroot}%{_usr}
39cp -r "*" %{buildroot}%{_usr}
40mkdir -p %{buildroot}%{_datadir}/doc/libc-0.6.3
41mv %{buildroot}%{_usr}/doc/gcc-3.3.5 %{buildroot}%{_datadir}/doc/libc-0.6.3
42#mv %{buildroot}%{_datadir}/doc/gcc-3.3.5 libc-0.6.3
43
44%clean
45rm -rf $RPM_BUILD_ROOT
46
47
48%files
49%defattr(-,root,root)
50%doc %{_datadir}/doc/*
51/%{_libdir}/libc06*.dll
52
53
54%files devel
55%defattr(-,root,root)
56%doc %{_prefix}/man/man1/*
57%{_usr}/bin
58%{_usr}/i386-pc-os2-elf
59%{_usr}/i386-pc-os2-emx
60%{_usr}/include
61%{_usr}/info
62%{_usr}/lib
63%{_usr}/share
64
65%changelog
Note: See TracBrowser for help on using the repository browser.