recipe 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # Build recipe for giflib.
  2. #
  3. # Copyright (C) 2019 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=giflib
  17. version=5.2.1
  18. release=2
  19. # Set 'outdir' for a nice and well-organized output directory
  20. outdir="${outdir}/${arch}/x-libs"
  21. tarname=${program}-${version}.tar.gz
  22. # Remote source(s)
  23. fetch=http://downloads.sourceforge.net/project/giflib/$tarname
  24. description="
  25. Main library for reading and writing GIF files.
  26. The giflib package contains libraries for reading and writing GIFs
  27. as well as programs for converting and working with GIF files.
  28. "
  29. homepage=http://giflib.sourceforge.net/
  30. license="MIT Expat variant"
  31. docs="COPYING ChangeLog NEWS README TODO"
  32. docsdir="${docdir}/${program}-${version}"
  33. # Limit parallel jobs to '1' for this build
  34. jobs=1
  35. build()
  36. {
  37. set -e
  38. unpack "${tardir}/$tarname"
  39. cd "$srcdir"
  40. # Set sane permissions
  41. chmod -R u+w,go-w,a+rX-s .
  42. make -j${jobs} V=1 CFLAGS="$QICFLAGS -fPIC" LDFLAGS="$QILDFLAGS"
  43. make -j${jobs} PREFIX=/usr LIBDIR=/usr/lib${libSuffix} \
  44. DESTDIR="$destdir" install
  45. # Comment the following line if you want to preserve the static lib
  46. rm -f "${destdir}/usr/lib${libSuffix}/libgif.a"
  47. # Compress and link man pages (if needed)
  48. if test -d "${destdir}/$mandir"
  49. then
  50. (
  51. cd "${destdir}/$mandir"
  52. find . -type f -exec lzip -9 '{}' +
  53. find . -type l | while read -r file
  54. do
  55. ln -sf "$(readlink -- "$file").lz" "${file}.lz"
  56. rm -- "$file"
  57. done
  58. )
  59. fi
  60. # Copy documentation
  61. mkdir -p "${destdir}${docsdir}"
  62. cp -p $docs "${destdir}${docsdir}"
  63. }