binutils upgraded to version 2.32
[dragora.git] / stages / 1 / 06-file
blob33283147587ceefcc1c7c554c0ae4c611aac30da
1 # Build script for file.
3 # Copyright (c) 2014-2018 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 version=5.35
19 cd -- "$TMPDIR"
20 rm -rf file-${version}
21 unpack "${worktree}/sources/file-${version}.tar.gz"
23 # Build instructions
24 cd file-${version}
26 # A local installation of "file" is needed in order
27 # to cross-compile "file" matching the same version
28 ./configure \
29  --prefix="$crossdir" \
30  --disable-fsect-man5
32 make -j1 V=1
33 make -j1 install
35 make -j1 clean
37 # Import and export toolchain variables
38 . "${worktree}/stages/env.d/cross-staticenv"
40 ./configure \
41 AR="$AR" AS="$AS" LD="$LD" RANLIB="$RANLIB" READELF="$READELF" STRIP="$STRIP" \
42 CC="$BTCC" CXX="$BTCXX" \
43 CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
44  --prefix=/tools \
45  --build=$host \
46  --host=$target \
47  --disable-fsect-man5
49 make -j1 V=1
50 make -j1 install
52 # Unset some imported variables from file
53 unset AR AS LD RANLIB READELF STRIP
55 cleanup()
57     cd -- "$TMPDIR" && rm -rf file-${version}