recipe 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # Build recipe for wireless_tools.
  2. #
  3. # Copyright (c) 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=wireless_tools
  17. version=30.pre9
  18. release=1
  19. # Set 'outdir' for a nice and well-organized output directory
  20. outdir="${outdir}/${arch}/networking"
  21. tarname=${program}.${version}.tar.gz
  22. # Remote source(s)
  23. fetch=https://hewlettpackard.github.io/wireless-tools/$tarname
  24. description="
  25. Tools for Wireless extension.
  26. The wireless tools package is a set of tools allowing manipulation of
  27. the Wireless Extensions. They use a textual interface to support the
  28. full Wireless Extension.
  29. "
  30. homepage=http://www.gnu.org/software/gawk
  31. license=GPLv2+
  32. # Custom source directory
  33. srcdir="${program}.${version%.*}"
  34. # Source documentation
  35. docs="COPYING README* *.txt"
  36. docsdir="${docdir}/${program}-${version}"
  37. build()
  38. {
  39. set -e
  40. unpack "${tardir}/$tarname"
  41. cd "$srcdir"
  42. # Set sane permissions
  43. chmod -R u+w,go-w,a+rX-s .
  44. make -j${jobs} \
  45. BUILD_STRIPPING=y \
  46. PREFIX="${destdir}/usr" \
  47. INSTALL_MAN="${destdir}/$mandir" \
  48. INSTALL_LIB="${destdir}/usr/lib${libSuffix}" \
  49. install
  50. # Compress and link man pages (if needed)
  51. if test -d "${destdir}/$mandir"
  52. then
  53. (
  54. cd "${destdir}/$mandir"
  55. find . -type f -exec lzip -9 '{}' +
  56. find . -type l | while read -r file
  57. do
  58. ln -sf "$(readlink -- "$file").lz" "${file}.lz"
  59. rm -- "$file"
  60. done
  61. )
  62. fi
  63. # Copy documentation
  64. mkdir -p "${destdir}${docsdir}"
  65. cp -p $docs "${destdir}${docsdir}/"
  66. }