recipe 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. # Build recipe for findutils.
  2. #
  3. # Copyright (c) 2016-2017 Matias Fonzo, <selk@dragora.org>.
  4. # Copyright (c) 2019, 2021 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.8.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" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
  44. $configure_args \
  45. --libdir=/usr/lib${libSuffix} \
  46. --libexecdir=/usr/lib${libSuffix}/locate \
  47. --localstatedir=/var/lib/locate \
  48. --infodir=$infodir \
  49. --mandir=$mandir \
  50. --docdir=$docsdir \
  51. --build="$(gcc -dumpmachine)"
  52. make -j${jobs} V=1
  53. make -j${jobs} DESTDIR="$destdir" install
  54. # Remove locate implementation, replaced by mlocate
  55. rm -f "${destdir}/usr/bin/locate" \
  56. "${destdir}/usr/bin/updatedb" \
  57. "${destdir}/${mandir}/man1/locate.1" \
  58. "${destdir}/${mandir}/man1/updatedb.1" \
  59. "${destdir}/${mandir}/man5/locatedb.5"
  60. rm -rf "${destdir}/usr/lib${libSuffix}/locate" \
  61. "${destdir}/var/lib/locate"
  62. # Remove generated charset.alias
  63. rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
  64. rmdir "${destdir}/usr/lib${libSuffix}" || true
  65. # Compress info documents deleting index file for the package
  66. if test -d "${destdir}/$infodir"
  67. then
  68. rm -f "${destdir}/${infodir}/dir"
  69. lzip -9 "${destdir}/${infodir}"/*
  70. fi
  71. # Compress and link man pages (if needed)
  72. if test -d "${destdir}/$mandir"
  73. then
  74. (
  75. cd "${destdir}/$mandir"
  76. find . -type f -exec lzip -9 {} +
  77. find . -type l | while read -r file
  78. do
  79. ln -sf "$(readlink -- "$file").lz" "${file}.lz"
  80. rm -- "$file"
  81. done
  82. )
  83. fi
  84. # Copy documentation
  85. mkdir -p "${destdir}/$docsdir"
  86. cp -p $docs "${destdir}/$docsdir"
  87. }