recipe 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # Build recipe for findutils.
  2. #
  3. # Copyright (c) 2016-2017 Matias Fonzo, <selk@dragora.org>.
  4. # Copyright (c) 2019, 2021-2022 Matias Fonzo, <selk@dragora.org>.
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. # Exit immediately on any error
  18. set -e
  19. program=findutils
  20. version=4.9.0
  21. release=1
  22. # Define a category for the output of the package name
  23. pkgcategory=tools
  24. tarname=${program}-${version}.tar.xz
  25. # Remote source(s)
  26. fetch=https://ftp.gnu.org/gnu/findutils/$tarname
  27. description="
  28. Utilities to find files.
  29. The set of GNU find utilities contains tools to find files
  30. such as exact name, creation date, size, permissions, etc.
  31. "
  32. homepage=https://www.gnu.org/software/findutils
  33. license=GPLv3+
  34. # Source documentation
  35. docs="AUTHORS COPYING ChangeLog NEWS README* THANKS TODO"
  36. docsdir="${docdir}/${program}-${version}"
  37. build()
  38. {
  39. unpack "${tardir}/$tarname"
  40. cd "$srcdir"
  41. # Set sane permissions
  42. chmod -R u+w,go-w,a+rX-s .
  43. ./configure CPPFLAGS="$QICPPFLAGS" \
  44. CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
  45. $configure_args \
  46. --libdir=/usr/lib${libSuffix} \
  47. --libexecdir=/usr/lib${libSuffix}/locate \
  48. --localstatedir=/var/lib/locate \
  49. --infodir=$infodir \
  50. --mandir=$mandir \
  51. --docdir=$docsdir \
  52. --build="$(gcc -dumpmachine)"
  53. make -j${jobs} V=1
  54. make -j${jobs} DESTDIR="$destdir" install
  55. # Remove locate implementation, replaced by mlocate
  56. rm -f "${destdir}/usr/bin/locate" \
  57. "${destdir}/usr/bin/updatedb" \
  58. "${destdir}/${mandir}/man1/locate.1" \
  59. "${destdir}/${mandir}/man1/updatedb.1" \
  60. "${destdir}/${mandir}/man5/locatedb.5"
  61. rm -rf "${destdir}/usr/lib${libSuffix}/locate" \
  62. "${destdir}/var/lib/locate"
  63. # Remove generated charset.alias
  64. rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
  65. rmdir "${destdir}/usr/lib${libSuffix}" || true
  66. # Compress info documents deleting index file for the package
  67. if test -d "${destdir}/$infodir"
  68. then
  69. rm -f "${destdir}/${infodir}/dir"
  70. lzip -9 "${destdir}/${infodir}"/*
  71. fi
  72. # Compress and link man pages (if needed)
  73. if test -d "${destdir}/$mandir"
  74. then
  75. (
  76. cd "${destdir}/$mandir"
  77. find . -type f -exec lzip -9 {} +
  78. find . -type l | while read -r file
  79. do
  80. ln -sf "$(readlink -- "$file").lz" "${file}.lz"
  81. rm -- "$file"
  82. done
  83. )
  84. fi
  85. # Copy documentation
  86. mkdir -p "${destdir}/$docsdir"
  87. cp -p $docs "${destdir}/$docsdir"
  88. }