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

4.104.114.95
Last change on this file since b8b0f44 was b8b0f44, checked in by Chris Johns <chrisj@…>, on 09/10/13 at 06:19:20

config: Use ${build_top} to change dir to parent.

On NetBSD with ksh changing into a symlink made PWD the link's
target path so a 'cd ..' returned you to that parent and not
the parent you started from. Record the build top and then
change back to that path.

Change the package names to the actual packages and remove the
extra directory in the build tree. This makes the paths simpler.

  • Property mode set to 100644
File size: 1.6 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  build_top=$(pwd)
29
30  %setup -q -n automake-%{automake_version}
31  %{?patch0:%patch0 -p1}
32
33  cd ${build_top}
34
35%build
36  build_top=$(pwd)
37
38  %if %{defined _internal_autotools_path}
39    export PATH="%{_internal_autotools_path}/bin:${PATH}"
40  %endif
41
42  cd automake-%{automake_version}
43
44  if test "%{_internal_autotools}" = "yes"; then
45    am_prefix=%{_internal_autotools_path}
46  else
47    am_prefix=%{_prefix}
48  fi
49
50  if test "%{_build}" != "%{_host}" ; then
51    CFLAGS_FOR_BUILD="-g -O2 -Wall"
52  fi
53  export CFLAGS CFLAGS_FOR_BUILD CC
54
55  CFLAGS="$SB_OPT_FLAGS" \
56  ./configure \
57    --build=%{_build} --host=%{_host} \
58    --verbose \
59    --prefix=${am_prefix}
60
61  %{__make} %{?_smp_mflags} all
62
63  unset CFLAGS_FOR_BUILD
64
65  cd ${build_top}
66
67%install
68  build_top=$(pwd)
69
70  export PATH="%{_bindir}:${PATH}"
71  %{__rmdir} $SB_BUILD_ROOT
72
73  cd automake-%{automake_version}
74
75  if test "%{_internal_autotools}" = "yes"; then
76    %{__make} install
77  else
78    %{__make} DESTDIR=$SB_BUILD_ROOT install
79  fi
80
81  cd ${build_top}
Note: See TracBrowser for help on using the repository browser.