source: rtems/contrib/crossrpms/gcc/base-g77.add @ 4cf3275

4.8
Last change on this file since 4cf3275 was 86a30d0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/22/07 at 07:08:30

Various patches from rtems-4-8-testing branch.

  • Property mode set to 100644
File size: 1000 bytes
Line 
1%if %build_infos
2%if %build_g77
3# ==============================================================
4# @rpmprefix@gcc-g77-common
5# ==============================================================
6%package -n @rpmprefix@gcc-g77-common
7Summary:        Base package for RTEMS gcc/g77 compiler
8Group:          Development/Tools
9Version:        %{gcc_rpmvers}
10License:        GPL
11
12Requires(post):         /sbin/install-info
13Requires(preun):        /sbin/install-info
14
15%description -n @rpmprefix@gcc-g77-common
16RTEMS is an open source operating system for embedded systems.
17
18This is the files for gcc/g77 that are shared by all targets.
19
20%files -n @rpmprefix@gcc-g77-common
21%defattr(-,root,root)
22%sysdir %{_infodir}
23%ghost %{_infodir}/dir
24%{_infodir}/g77.info*.gz
25
26%post -n @rpmprefix@gcc-g77-common
27  /sbin/install-info --info-dir=%{_infodir} %{_infodir}/g77.info.gz || :
28
29%preun -n @rpmprefix@gcc-g77-common
30if [ $1 -eq 0 ]; then
31  /sbin/install-info --delete --info-dir=%{_infodir} %{_infodir}/g77.info.gz || :
32fi
33
34%endif
35%endif
Note: See TracBrowser for help on using the repository browser.