summaryrefslogtreecommitdiffstats
path: root/source-builder/config/sis-2-1.cfg
blob: a07b2db0b06a029a60295bd50ae6081b029251df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#
# Sis 2.xx Version 1.
#
# This configuration file configure's, make's and install's sis
#

Name:      sis-%{sis_version}-%{_host}-%{release}
Summary:   Sis v%{sis_version} for host %{_host}
Version:   %{sis_version}
Release:   %{release}
#URL: 	   http://www.gnu.org/software/sis/

#
# Source
#
%define sis_source sis-%{sis_version}
%source set sis https://git.rtems.org/sis/snapshot/%{sis_source}.tar.bz2

#
# Prepare the source code.
#
%prep
  build_top=$(pwd)

  %source setup sis -q -n sis-%{sis_version}

  cd ${build_top}

%build
  build_top=$(pwd)

  cd sis-%{sis_version}

  ac_prefix=%{_prefix}

  if test "%{_build}" != "%{_host}" ; then
    CFLAGS_FOR_BUILD="-g -O2 -Wall"
  fi
  export CFLAGS CFLAGS_FOR_BUILD CC

  if test "%{_target}" != "" ; then
    SIS_PREFIX="%{_target}-"
  fi
  CFLAGS="$SB_CFLAGS" \
  ./configure \
    --build=%{_build} --host=%{_host} \
    --program-prefix="$SIS_PREFIX" \
    --prefix=${ac_prefix}

  %{__make} %{?_smp_mflags} all

  unset CFLAGS_FOR_BUILD

  cd ${build_top}

%install
  build_top=$(pwd)

  export PATH="%{_bindir}:${PATH}"
  %{__rmdir} $SB_BUILD_ROOT

  cd sis-%{sis_version}

  %{__make} DESTDIR=$SB_BUILD_ROOT install

  cd ${build_top}