blob: 85f7393e7b8e6e62a52ab7b2deaa258f67d2f90c (
plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# Autotools default configurations
variables:
autogen: |
export NOCONFIGURE=1;
if [ -x %{conf-cmd} ]; then true;
elif [ -x %{conf-root}/autogen ]; then %{conf-root}/autogen;
elif [ -x %{conf-root}/autogen.sh ]; then %{conf-root}/autogen.sh;
elif [ -x %{conf-root}/bootstrap ]; then %{conf-root}/bootstrap;
elif [ -x %{conf-root}/bootstrap.sh ]; then %{conf-root}/bootstrap.sh;
else autoreconf -ivf %{conf-root};
fi
# Project-wide extra arguments to be passed to `configure`
conf-global: ''
# Element-specific extra arguments to be passed to `configure`.
conf-local: ''
# For backwards compatibility only, do not use.
conf-extra: ''
conf-cmd: "%{conf-root}/configure"
conf-args: |
--prefix=%{prefix} \
--exec-prefix=%{exec_prefix} \
--bindir=%{bindir} \
--sbindir=%{sbindir} \
--sysconfdir=%{sysconfdir} \
--datadir=%{datadir} \
--includedir=%{includedir} \
--libdir=%{libdir} \
--libexecdir=%{libexecdir} \
--localstatedir=%{localstatedir} \
--sharedstatedir=%{sharedstatedir} \
--mandir=%{mandir} \
--infodir=%{infodir} %{conf-extra} %{conf-global} %{conf-local}
configure: |
%{conf-cmd} %{conf-args}
make: make
make-install: make -j1 DESTDIR="%{install-root}" install
# Set this if the sources cannot handle parallelization.
#
# notparallel: True
# Automatically remove libtool archive files
#
# Set remove-libtool-modules to "true" to remove .la files for
# modules intended to be opened with lt_dlopen()
#
# Set remove-libtool-libraries to "true" to remove .la files for
# libraries
#
# Value must be "true" or "false"
remove-libtool-modules: "false"
remove-libtool-libraries: "false"
delete-libtool-archives: |
if %{remove-libtool-modules} || %{remove-libtool-libraries}; then
find "%{install-root}" -name "*.la" -print0 | while read -d '' -r file; do
if grep '^shouldnotlink=yes$' "${file}" &>/dev/null; then
if %{remove-libtool-modules}; then
echo "Removing ${file}."
rm "${file}"
else
echo "Not removing ${file}."
fi
else
if %{remove-libtool-libraries}; then
echo "Removing ${file}."
rm "${file}"
else
echo "Not removing ${file}."
fi
fi
done
fi
config:
# Commands for configuring the software
#
configure-commands:
- |
%{autogen}
- |
%{configure}
# Commands for building the software
#
build-commands:
- |
%{make}
# Commands for installing the software into a
# destination folder
#
install-commands:
- |
%{make-install}
- |
%{delete-libtool-archives}
# Commands for stripping debugging information out of
# installed binaries
#
strip-commands:
- |
%{strip-binaries}
# Use max-jobs CPUs for building and enable verbosity
environment:
MAKEFLAGS: -j%{max-jobs}
V: 1
# And dont consider MAKEFLAGS or V as something which may
# affect build output.
environment-nocache:
- MAKEFLAGS
- V
|