summaryrefslogtreecommitdiffstats
path: root/source-builder/config/expat-2-1.cfg
blob: 77774e7fa8a8d5bfea35c5c9c1d3d061289340cc (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
#
# Expat 2.xx Version 1.
#
# This configuration file configure's, make's and install's expat.
#

%if %{release} == %{nil}
%define release 1
%endif

Name:      expat-%{expat_version}-%{_host}-%{release}
Summary:   Expat XML Parser v%{expat_version} for target %{_target} on host %{_host}
Version:   %{expat_version}
Release:   %{release}
URL: 	   http://expat.sourceforge.net/
BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n)

#
# Source
#
%source set expat https://github.com/libexpat/libexpat/releases/download/%{expat_version_dir}/expat-%{expat_version}.tar.gz

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

  %source setup expat -q -n expat-%{expat_version}
  %patch setup expat -p1

  cd ${build_top}

%build
  build_top=$(pwd)

  cd expat-%{expat_version}

  %{host_build_flags}

  ./configure \
    --build=%{_build} --host=%{_host} \
    --verbose \
    --prefix=%{_prefix} --bindir=%{_bindir} \
    --exec-prefix=%{_exec_prefix} \
    --includedir=%{_includedir} --libdir=%{_libdir} \
    --mandir=%{_mandir} --infodir=%{_infodir}

  %{__make} %{?_smp_mflags} all

  cd ${build_top}

%install
  build_top=$(pwd)

  rm -rf $SB_BUILD_ROOT

  cd expat-%{expat_version}
  %{__make} DESTDIR=$SB_BUILD_ROOT install

  cd ${build_top}