summaryrefslogtreecommitdiffstats
path: root/src/opkbuild.sh
blob: 114eeed4e1dd0432bb6edec38e13e4aff90f9d7b (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
#!@@SHELL@@
#
# opkhelper
# src/opkbuild
# Build opkg packages.
#
# Copyright (C) 2012 Patrick "P. J." McDermott
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

. @@LIBDIR@@/opkhelper/controlfields
. @@LIBDIR@@/opkhelper/architecture
. @@LIBDIR@@/opkhelper/archive

print_usage()
{
	cat <<EOF
Usage: ${1} [-S|-b] [-r assume-uid0-cmd] \
[-a host-architecture] [-p host-platform] \
[-s status-override] [-d]
EOF
}

print_version()
{
	cat <<EOF
opkbuild (@@PACKAGE@@) @@VERSION@@
Copyright (C) 2012 Patrick "P. J." McDermott
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by P. J. McDermott.
EOF
}

error()
{
	[ ${#} -eq 1 ] && printf 'opkbuild: [%s] Error\n' "${1}" >&2
	if ${dbg}; then
		printf 'opkbuild: Starting debugging shell...\n' >&2
		@@SHELL@@
	fi
	cd ..
	rm -Rf tmp 2> /dev/null
	exit 1
}

source_only=false
binary_only=false
opts=$(getopt -n "${0}" -o 'Sbr:a:p:ds:V' -- "${@}")
if [ ${?} -ne 0 ]; then
	print_usage "${0}" >&2
	exit 1;
fi
eval set -- "${opts}"
while true; do
	case "${1}" in
		-S)
			source_only=true
			shift
			;;
		-b)
			binary_only=true
			shift
			;;
		-r)
			uid0_cmd=${2}
			shift 2
			;;
		-a)
			host_arch=${2}
			shift 2
			;;
		-p)
			host_platform=${2}
			shift 2
			;;
		-d)
			dbg=true
			shift
			;;
		-s)
			status_override=${2}
			shift 2
			;;
		-V)
			print_version
			exit 0
			;;
		--)
			shift
			break
			;;
		*)
			print_usage "${0}" >&2
			exit 1
			;;
	esac
done

if ${source_only} && ${binary_only}; then
	printf 'opkbuild: Error: Cannot combine -S and -b\n' >&2
	exit 1
fi
if [ -z "${uid0_cmd}" ]; then
	uid0_cmd=fakeroot
fi
${uid0_cmd} true
if [ ${?} -ne 0 ]; then
	printf 'opkbuild: Error running command to gain UID 0\n' >&2
	exit 1
fi
if [ -z "${dbg}" ]; then
	dbg=false
fi

# Sanity checks.
printf 'opkbuild: Checking for sanity...\n'
if [ ! -f format -o ! -f build -o ! -f control ]; then
	printf 'Error: Current working directory is not a source package.\n' >&2
	exit 1
fi
if [ "$(cat format)" != '1.0' ]; then
	printf 'Error: Source package is of an incompatible version.\n' >&2
	exit 1
fi

# Attempt to detect the build architecture.
build_arch=$(opkg print-architecture | sed -n \
	's/^arch \([^ -][^ -]*-[^ -][^ -]*-[^ -][^ -]*\) [0-9][0-9]*$/\1/p')
if [ -z "${build_arch}" ]; then
	printf 'opkbuild: Error: No installable architecture found\n' >&2
	exit 1
elif [ $(echo "${build_arch}" | wc -l) -gt 1 ]; then
	printf 'opkbuild: Error: Multiple installable architectures found\n' >&2
	exit 1
fi

# If a host architecture is not specified, natively build.
if [ -z "${host_arch}" ]; then
	host_arch="${build_arch}"
fi

# Attempt to detect the build platform.
build_platform=$(opkg print-architecture | sed -n \
	's/^arch \([^ -][^ -]*\) [0-9][0-9]*$/\1/p' | \
	grep -v 'all')
if [ -z "${build_platform}" ]; then
	printf 'opkbuild: Error: No build platforms found\n' >&2
	exit 1
elif [ $(echo "${build_platform}" | wc -l) -gt 1 ]; then
	printf 'opkbuild: Error: Multiple build platforms found\n' >&2
	exit 1
fi

# If there no config files to copy, build platform-independent packages.
if [ ! -f config ]; then
	host_platform=''
# If a host platform was not specified, natively configure.
elif [ -z "${host_platform}" ]; then
	host_platform="${build_platform}"
fi

# Resolve status override file path.
pkg_dir="${PWD}"
cd "$(dirname "${status_override}")"
status_override="${PWD}/$(basename "${status_override}")"
cd "${pkg_dir}"

# Make work area.
printf 'opkbuild: Making work area...\n'
mkdir tmp
cd tmp

# Get source package name and version.
printf 'opkbuild: Reading source package control fields...\n'
srcpkg=$(oh_get_field Source)
version=$(oh_get_field Version)
export OH_SRCPKG="${srcpkg}"
export OH_PKGVER=${version}

# Set environment variables for the build architecture.
export OH_BUILD_ARCH_DIST="${build_arch}"
IFS=- read OH_BUILD_ARCH_CPU OH_BUILD_ARCH_KERNEL OH_BUILD_ARCH_LIBS <<EOF
${OH_BUILD_ARCH_DIST}
EOF
export OH_BUILD_ARCH_CPU OH_BUILD_ARCH_KERNEL OH_BUILD_ARCH_LIBS
export OH_BUILD_PLATFORM="${build_platform}"

# Set environment variables for the host architecture and platform.
export OH_HOST_ARCH_DIST="${host_arch}"
IFS=- read OH_HOST_ARCH_CPU OH_HOST_ARCH_KERNEL OH_HOST_ARCH_LIBS <<EOF
${OH_HOST_ARCH_DIST}
EOF
export OH_HOST_ARCH_CPU OH_HOST_ARCH_KERNEL OH_HOST_ARCH_LIBS
export OH_HOST_PLATFORM="${host_platform}"

# Make sure the architecture table exists.
if [ ! -f "@@DATADIR@@/opkhelper/archtab" ]; then
	printf 'opkbuild: Error: architecture table not found.\n' >&2
	exit 1
fi

archtab_bre='[ \t][ \t]*\([^ \t][^ \t]*[ \t][ \t]*[^ \t][^ \t]*\)'

# TODO: kbuild doesn't have standardized architecture names.  For example, IA-32
# is known as "x86" in Linux and "i386" in BusyBox.  So we should support a
# comma-separated list of possible values and try to find one in src/arch once
# the software source code is copied into the work area.

# TODO: Ideally, we should have a tool like debhelper's dh_auto_configure that
# detects the build system in use and configures the build automatically,
# including cross building options.

# Look up build GNU and kbuild architecture names.
archtab_row_build="$(sed -n \
	"s/^${OH_BUILD_ARCH_DIST}${archtab_bre}\$/\\1/p" \
	"@@DATADIR@@/opkhelper/archtab")"
if [ -z "${archtab_row_build}" ]; then
	printf 'opkbuild: Error: "%s" not found in architecture table.\n' \
		"${OH_BUILD_ARCH_DIST}" >&2
	exit 1
fi
read OH_BUILD_ARCH_GNU OH_BUILD_ARCH_KBUILD <<EOF
${archtab_row_build}
EOF
export OH_BUILD_ARCH_GNU OH_BUILD_ARCH_KBUILD

# Look up host GNU and kbuild architecture names.
archtab_row_host="$(sed -n \
	"s/^${OH_HOST_ARCH_DIST}${archtab_bre}\$/\\1/p" \
	"@@DATADIR@@/opkhelper/archtab")"
if [ -z "${archtab_row_host}" ]; then
	printf 'opkbuild: Error: "%s" not found in architecture table.\n' \
		"${OH_HOST_ARCH_DIST}" >&2
	exit 1
fi
read OH_HOST_ARCH_GNU OH_HOST_ARCH_KBUILD <<EOF
${archtab_row_host}
EOF
export OH_HOST_ARCH_GNU OH_HOST_ARCH_KBUILD

# Detect cross building.
if [ "${OH_BUILD_ARCH_GNU}" != "${OH_HOST_ARCH_GNU}" ]; then
	toolchain_prefix="${OH_HOST_ARCH_GNU}-"
else
	toolchain_prefix=
fi

# Set toolchain environment variables.
# NB: This is written for GNU Binutils and GCC and won't work for, e.g., LLVM.
export AR="${toolchain_prefix}ar"
export AS="${toolchain_prefix}as"
export CC="${toolchain_prefix}gcc"
export CPP="${toolchain_prefix}cpp"
export CXX="${toolchain_prefix}g++"
export LD="${toolchain_prefix}ld"
export NM="${toolchain_prefix}nm"
export OBJCOPY="${toolchain_prefix}objcopy"
export OBJDUMP="${toolchain_prefix}objdump"
export RANLIB="${toolchain_prefix}ranlib"
export READELF="${toolchain_prefix}readelf"
export SIZE="${toolchain_prefix}size"
export STRINGS="${toolchain_prefix}strings"
export STRIP="${toolchain_prefix}strip"
# These are used by kbuild (the build system of Linux, BusyBox, and others).
export ARCH="${OH_HOST_ARCH_KBUILD}"
export CROSS_COMPILE="${toolchain_prefix}"

# Set build flags.
if [ -f "@@DATADIR@@/opkhelper/buildflags/${OH_HOST_ARCH_CPU}" ]; then
	. @@DATADIR@@/opkhelper/buildflags/${OH_HOST_ARCH_CPU}
fi

# Print build and host architecture and platform information.
printf 'opkbuild: Build system:\n'
printf 'opkbuild:   Architecture:  %s (%s, %s)\n' \
	"${OH_BUILD_ARCH_DIST}" "${OH_BUILD_ARCH_GNU}" "${OH_BUILD_ARCH_KBUILD}"
printf 'opkbuild:   Platform:      %s\n' "${OH_BUILD_PLATFORM}"
printf 'opkbuild: Host system:\n'
printf 'opkbuild:   Architecture:  %s (%s, %s)\n' \
	"${OH_HOST_ARCH_DIST}" "${OH_HOST_ARCH_GNU}" "${OH_HOST_ARCH_KBUILD}"
printf 'opkbuild:   Platform:      %s\n' "${OH_HOST_PLATFORM:-<none>}"

# Check build dependencies.
oh-checkbuilddeps -s "${status_override}" || error "${srcpkg}-src"

printf '\n'

# TODO: This should maybe go in the library.

if ! ${binary_only}; then

# Build *-src package.
printf 'opkbuild: Attempting to build package "%s"...\n' "${srcpkg}-src"
printf 'opkbuild: Installing files for package "%s"...\n' "${srcpkg}-src"
${uid0_cmd} mkdir -p ${srcpkg}-src.data/usr/src/${srcpkg}_${version} ||
	error "${srcpkg}-src"
for file in ../*; do
	case ${file} in
		../tmp)
			;;
		../*)
			${uid0_cmd} cp -R ${file} \
				${srcpkg}-src.data/usr/src/${srcpkg}_${version} ||
				error "${srcpkg}-src"
			;;
	esac
done
( ${uid0_cmd} oh-gencontrol -s;) || error "${srcpkg}-src"
( ${uid0_cmd} oh-buildopk -s;) || error "${srcpkg}-src"
( ${uid0_cmd} rm -Rf ${srcpkg}-src.data;) || error "${srcpkg}-src"
printf 'opkbuild: Package "%s" complete!\n\n' "${srcpkg}-src"

fi

# TODO: This should maybe go in the library.

if ! ${source_only}; then

# Build other binary packages.
for binpkgdir in ../*.pkg/; do
	binpkg=${binpkgdir#'../'}
	binpkg=${binpkg%'.pkg/'}
	export OH_BINPKG="${binpkg}"
	# Check architecture.
	oh_is_buildable "${binpkg}"
	if [ ${?} -eq 0 ]; then
		printf 'opkbuild: Attempting to build package "%s"...\n' "${binpkg}"
		# Copy or extract software sources to src.
		if [ -d ../src ]; then
			printf 'opkbuild: Copying sources into work area...\n'
			cp -Rp ../src src || error "${binpkg}"
		else
			printf 'opkbuild: Extracting sources into work area...\n'
			oh_archive_extract_source
			case ${?} in
				1)
					printf 'opkbuild: Error: No source archive found\n' >&2
					error
					;;
				2)
					printf 'opkbuild: Error: Multiple source archives found\n' \
						>&2
					error
					;;
				3)
					printf 'opkbuild: Error: %s\n' \
						'Unsupported archive compression format detected' >&2
					error
					;;
				4)
					printf 'opkbuild: Error: %s\n' \
						'No directories found in source archive' >&2
					error
					;;
				5)
					printf 'opkbuild: Error: %s\n' \
						'Multiple top-level directories found in source archive' >&2
					error
					;;
				6)
					printf 'opkbuild: Error: %s\n' \
						'Failed to extract source archive' >&2
					error
					;;
				7)
					printf 'opkbuild: Error: %s\n' \
						'Failed to move extracted sources' >&2
					error
					;;
			esac
		fi
		# Make installation directory.
		# TODO: Maybe this should be an FHS-compliant filesystem hierarchy.
		mkdir dest || error "${binpkg}"
		# Apply patches.
		oh-applypatches
		# Copy platform config files.
		oh-copyconfig || error "${binpkg}"
		# Build the package.
		${uid0_cmd} ../build ${binpkg} || error "${binpkg}"
		printf 'opkbuild: Package "%s" complete!\n\n' "${binpkg}"
		# Clean up everything except the build stamps.
		for file in *; do
			case ${file} in
				*stamp)
					;;
				*)
					${uid0_cmd} rm -Rf ${file} || error "${binpkg}"
					;;
			esac
		done
	fi
done

fi

# Clean up tmp.
cd ..
rm -Rf tmp