recipe 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # Build recipe for GTK+3.
  2. #
  3. # Copyright (C) 2018, MMPG <mmpg@vp.pl>
  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=gtk+
  17. version=3.22.29
  18. release=1
  19. tarname=${program}-${version}.tar.xz
  20. # Remote source(s)
  21. fetch=http://ftp.gnome.org/pub/gnome/sources/gtk+/3.22/$tarname
  22. description="
  23. A multi-platform toolkit for creating graphical user interfaces.
  24. Offering a complete set of widgets, GTK+ is suitable for
  25. projects ranging from small one-off projects to complete application
  26. suites.
  27. "
  28. homepage=https://www.gtk.org/
  29. license=GPLv2
  30. # Copy documentation
  31. docs="ABOUT-NLS AUTHORS COPYING NEWS NEWS.pre-1-0 README.commits README"
  32. docsdir="${docdir}/${program}-${version}"
  33. build()
  34. {
  35. set -e
  36. unpack "${tardir}/$tarname"
  37. cd "$srcdir"
  38. ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
  39. $configure_args \
  40. --mandir=$mandir \
  41. --infodir=$infodir \
  42. --enable-broadway-backend \
  43. --enable-x11-backend \
  44. --build="$(cc -dumpmachine)"
  45. make -j${jobs}
  46. make -j${jobs} DESTDIR="$destdir" install
  47. # Basic configuration
  48. mkdir -vp ~/.config/gtk-3.0
  49. cat $CWD/settings.ini > ~/.config/gtk-3.0/settings.ini
  50. # Compress info documents deleting index file for the package
  51. if test -d "${destdir}/$infodir"
  52. then
  53. rm -f "${destdir}/${infodir}/dir"
  54. lzip -9 "${destdir}/${infodir}"/*
  55. fi
  56. # Compress and link man pages (if needed)
  57. if test -d "${destdir}/$mandir"
  58. then
  59. (
  60. cd "${destdir}/$mandir"
  61. find . -type f -exec lzip -9 '{}' +
  62. find . -type l | while read -r file
  63. do
  64. ln -sf "$(readlink -- "$file").lz" "${file}.lz"
  65. rm -- "$file"
  66. done
  67. )
  68. fi
  69. # Copy documentation
  70. mkdir -p "${destdir}${docsdir}"
  71. for file in $docs
  72. do
  73. cp -p $file "${destdir}${docsdir}"
  74. done
  75. }