recipe 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # Build recipe for mtdev.
  2. #
  3. # Copyright (c) 2017 Mateus P. Rodrigues, <mprodrigues@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=mtdev
  17. version=1.1.5
  18. release=1
  19. # Set 'outdir' for a nice and well-organized output directory
  20. outdir="${outdir}/${arch}/libs"
  21. tarname=${program}-${version}.tar.bz2
  22. # Remote source(s)
  23. fetch=http://bitmath.org/code/mtdev/$tarname
  24. description="
  25. Multitouch Protocol Translation Library.
  26. The mtdev is a stand-alone library which transforms all variants of
  27. kernel MT events to the slotted type B protocol. The events put into
  28. mtdev may be from any MT device, specifically type A without contact
  29. tracking, type A with contact tracking, or type B with contact
  30. tracking. See the kernel documentation for further details.
  31. "
  32. homepage=http://bitmath.org/code/mtdev/
  33. license=MIT
  34. # Source documentation
  35. docs="COPYING ChangeLog README"
  36. docsdir="${docdir}/${pkgname}-${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. ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
  45. $configure_args \
  46. --libdir=/usr/lib${libSuffix} \
  47. --docdir=$docsdir \
  48. --infodir=$infodir \
  49. --mandir=$mandir \
  50. make -j${jobs} V=1
  51. make -j${jobs} DESTDIR="$destdir" install-strip
  52. # Compress info documents deleting index file for the package
  53. if test -d "${destdir}/$infodir"
  54. then
  55. rm -f "${destdir}/${infodir}/dir"
  56. lzip -9 "${destdir}/${infodir}"/*
  57. fi
  58. # Compress and link man pages (if needed)
  59. if test -d "${destdir}/$mandir"
  60. then
  61. (
  62. cd "${destdir}/$mandir"
  63. find . -type f -exec lzip -9 '{}' +
  64. find . -type l | while read -r file
  65. do
  66. ln -sf "$(readlink -- "$file").lz" "${file}.lz"
  67. rm -- "$file"
  68. done
  69. )
  70. fi
  71. # Copy documentation
  72. mkdir -p "${destdir}${docsdir}"
  73. for file in $docs
  74. do
  75. cp -p $file "${destdir}${docsdir}"
  76. done
  77. }