10-patch 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Build script for GNU patch.
  2. #
  3. # Copyright (c) 2017-2018 Matias Fonzo, <selk@dragora.org>.
  4. #
  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
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  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.
  16. version=2.7.6
  17. cd -- "$TMPDIR"
  18. rm -rf patch-${version}
  19. unpack "${worktree}/sources/patch-${version}.tar.bz2"
  20. # Build instructions
  21. cd patch-${version}
  22. # Update for hosts based on musl
  23. cp -f "${worktree}/archive/common/config.guess" build-aux/config.guess
  24. cp -f "${worktree}/archive/common/config.sub" build-aux/config.sub
  25. # Import and export toolchain variables
  26. . "${worktree}/stages/env.d/cross-staticenv"
  27. ./configure \
  28. AR="$AR" AS="$AS" LD="$LD" RANLIB="$RANLIB" READELF="$READELF" STRIP="$STRIP" \
  29. CC="$BTCC" CXX="$BTCXX" \
  30. CFLAGS="$BTCFLAGS" LDFLAGS="$BTLDFLAGS" \
  31. --prefix=/tools \
  32. --build=$host \
  33. --host=$target
  34. make -j${jobs}
  35. make -j${jobs} install
  36. # Unset some imported variables from file
  37. unset AR AS LD RANLIB READELF STRIP
  38. cleanup()
  39. {
  40. cd -- "$TMPDIR" && rm -rf patch-${version}
  41. }