recipe 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Build recipe for xcb-util.
  2. #
  3. # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
  4. # Copyright (c) 2017 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. program=xcb-util
  18. version=0.4.0
  19. release=1
  20. tarname=${program}-${version}.tar.bz2
  21. # Remote source(s)
  22. fetch=http://www.x.org/releases/individual/xcb/$tarname
  23. description="
  24. XCB util core interface.
  25. Provides a number of libraries which sit on top of libxcb.
  26. "
  27. homepage=http://www.x.org
  28. license="MIT X Consortium"
  29. # Source documentation
  30. docs="COPYING ChangeLog NEWS README"
  31. docsdir="${docdir}/${program}-${version}"
  32. build()
  33. {
  34. set -e
  35. unpack "${tardir}/$tarname"
  36. cd "$srcdir"
  37. ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
  38. $configure_args \
  39. --libdir=/usr/lib${libSuffix} \
  40. --infodir=$infodir \
  41. --mandir=$mandir \
  42. --docdir=$docsdir \
  43. || true
  44. make -j${jobs} V=1
  45. make -j${jobs} DESTDIR="$destdir" install-strip
  46. # Compress info documents deleting index file for the package
  47. if test -d "${destdir}/$infodir"
  48. then
  49. rm -f "${destdir}/${infodir}/dir"
  50. lzip -9 "${destdir}/${infodir}"/*
  51. fi
  52. # Compress and link man pages (if needed)
  53. if test -d "${destdir}/$mandir"
  54. then
  55. (
  56. cd "${destdir}/$mandir"
  57. find . -type f -exec lzip -9 '{}' +
  58. find . -type l | while read -r file
  59. do
  60. ln -sf "$(readlink -- "$file").lz" "${file}.lz"
  61. rm -- "$file"
  62. done
  63. )
  64. fi
  65. # Copy documentation
  66. mkdir -p "${destdir}${docsdir}"
  67. for file in $docs
  68. do
  69. if test -e $file
  70. then
  71. cp -p $file "${destdir}${docsdir}"
  72. fi
  73. done
  74. }