recipes: optimize lzlib and plzip
[dragora.git] / stages / 1 / 06-file
blob04f8419acb6620b32a0750d60d6d3a45fb0f7ddd
1 # Build script for file.
3 # Copyright (c) 2014-2019 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.37
19 cd -- "$TMPDIR"
20 rm -rf file-${version}
21 unpack "${worktree}/sources/file-${version}.tar.gz"
23 # Build instructions
24 cd file-${version}
26 # Update for hosts based on musl
27 cp -f "${worktree}/archive/common/config.guess" config.guess
28 cp -f "${worktree}/archive/common/config.sub" config.sub
30 # A local installation of "file" is needed in order
31 # to cross-compile "file" matching the same version
32 ./configure \
33  --prefix="$crossdir" \
34  --disable-fsect-man5
36 make -j1 V=1
37 make -j1 install
39 make -j1 clean
41 # Import and export toolchain variables
42 . "${worktree}/stages/env.d/cross-staticenv"
44 ./configure \
45 AR="$AR" AS="$AS" LD="$LD" RANLIB="$RANLIB" READELF="$READELF" STRIP="$STRIP" \
46 CC="$BTCC" CXX="$BTCXX" \
47 CFLAGS="$BTCFLAGS" CXXFLAGS="$BTCXXFLAGS" LDFLAGS="$BTLDFLAGS" \
48  --prefix=/tools \
49  --build=$host \
50  --host=$target \
51  --disable-fsect-man5
53 make -j1 V=1
54 make -j1 install
56 # Unset some imported variables from file
57 unset AR AS LD RANLIB READELF STRIP
59 cleanup()
61     cd -- "$TMPDIR" && rm -rf file-${version}