recipe 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. # Build recipe for gperf.
  2. #
  3. # Copyright (c) 2016-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. program=gperf
  17. version=3.1
  18. release=2
  19. # Set 'outdir' for a nice and well-organized output directory
  20. outdir="${outdir}/${arch}/devel"
  21. tarname=${program}-${version}.tar.gz
  22. # Remote source(s)
  23. fetch=http://ftp.gnu.org/pub/gnu/gperf/$tarname
  24. description="
  25. Perfect hash function generator.
  26. GNU gperf is a perfect hash function generator. For a given list of
  27. strings, it produces a hash function and hash table, in form of C or
  28. C++ code, for looking up a value depending on the input string.
  29. The hash function is perfect, which means that the hash table has no
  30. collisions, and the hash table lookup needs a single string comparison
  31. only.
  32. GNU gperf is highly customizable. There are options for generating C
  33. or C++ code, for emitting switch statements or nested ifs instead of a
  34. hash table, and for tuning the algorithm employed by gperf.
  35. "
  36. homepage=http://www.gnu.org/software/gperf
  37. license=GPLv3+
  38. # Source documentation
  39. docs="AUTHORS COPYING ChangeLog NEWS README"
  40. docsdir="${docdir}/${program}-${version}"
  41. build()
  42. {
  43. set -e
  44. unpack "${tardir}/$tarname"
  45. cd "$srcdir"
  46. # Set sane permissions
  47. chmod -R u+w,go-w,a+rX-s .
  48. ./configure CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" \
  49. LDFLAGS="$QILDFLAGS -static" \
  50. $configure_args \
  51. --infodir=$infodir \
  52. --mandir=$mandir \
  53. --docdir=$docsdir \
  54. --build="$(cc -dumpmachine)"
  55. make -j${jobs} V=1
  56. make check
  57. make -j${jobs} DESTDIR="$destdir" install
  58. # Compress info documents deleting index file for the package
  59. if test -d "${destdir}/$infodir"
  60. then
  61. rm -f "${destdir}/${infodir}/dir"
  62. lzip -9 "${destdir}/${infodir}"/*
  63. fi
  64. # Compress manual page
  65. lzip -9 "${destdir}/${mandir}/man1/gperf.1"
  66. # Copy documentation
  67. mkdir -p "${destdir}${docsdir}"
  68. for file in $docs
  69. do
  70. cp -p $file "${destdir}${docsdir}"
  71. done
  72. }