source: rtems-source-builder/source-builder/config/automake-1-1.cfg @ 71329cd

4.104.114.95
Last change on this file since 71329cd was 71329cd, checked in by Chris Johns <chrisj@…>, on 03/04/13 at 07:02:06

Fix conditional logic.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1#
2# Automake 1.xx Version 1.
3#
4# This configuration file configure's, make's and install's automake
5#
6
7%ifn %{defined _internal_autotools}
8  %define _internal_autotools no
9%endif
10
11Name:      automake-%{automake_version}-%{_host}-%{release}
12Summary:   Automake v%{automake_version} for host %{_host}
13Version:   %{automake_version}
14Release:   %{release}
15URL:       http://www.gnu.org/software/automake/
16BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n)
17
18#
19# Source
20#
21Source0: ftp://ftp.gnu.org/gnu/automake/automake-%{automake_version}.tar.gz
22VersionControl0: git clone git://git.savannah.gnu.org/automake.git
23
24#
25# Prepare the source code.
26#
27%prep
28%setup -q -c -n %{name}-%{version}
29cd automake-%{automake_version}
30%{?patch0:%patch0 -p1}
31cd ..
32
33%build
34  export PATH="%{_bindir}:${PATH}"
35
36  cd automake-%{automake_version}
37
38  if "%{_internal_autotools}" == "yes"; then
39    am_prefix=$SB_TMPPREFIX
40  else
41    am_prefix=%{_prefix}
42  fi
43
44%if "%{_build}" != "%{_host}"
45  CFLAGS_FOR_BUILD="-g -O2 -Wall" \
46%endif
47  CFLAGS="$SB_OPT_FLAGS" \
48  ./configure \
49    --build=%{_build} --host=%{_host} \
50    --verbose \
51    --prefix=${am_prefix}
52
53  %{__make} %{?_smp_mflags} all
54
55  cd ..
56
57%install
58  export PATH="%{_bindir}:${PATH}"
59  rm -rf $SB_BUILD_ROOT
60
61  cd automake-%{automake_version}
62
63  if "%{_internal_autotools}" == "yes"; then
64    %{__make} install
65  else
66    %{__make} DESTDIR=$SB_BUILD_ROOT install
67  fi
68
69  cd ..
Note: See TracBrowser for help on using the repository browser.