libglu_9.0.1.bb 992 B

123456789101112131415161718192021222324252627282930
  1. SUMMARY = "The OpenGL utility toolkit"
  2. DESCRIPTION = "GLU is a utility toolkit used with OpenGL implementations"
  3. HOMEPAGE = "http://mesa3d.org"
  4. BUGTRACKER = "https://bugs.freedesktop.org"
  5. SECTION = "x11"
  6. LICENSE = "MIT"
  7. LIC_FILES_CHKSUM = "file://include/GL/glu.h;endline=29;md5=6b79c570f644363b356456e7d44471d9 \
  8. file://src/libtess/tess.c;endline=29;md5=6b79c570f644363b356456e7d44471d9"
  9. # Epoch as this used to be part of mesa
  10. PE = "2"
  11. PR = "0"
  12. SRC_URI = "https://mesa.freedesktop.org/archive/glu/glu-${PV}.tar.gz"
  13. SRC_URI[md5sum] = "5599a0e0a97335e10239d9165aced60d"
  14. SRC_URI[sha256sum] = "f6f484cfcd51e489afe88031afdea1e173aa652697e4c19ddbcb8260579a10f7"
  15. S = "${WORKDIR}/glu-${PV}"
  16. DEPENDS = "virtual/libgl"
  17. inherit autotools pkgconfig features_check
  18. # Requires libGL.so which is provided by mesa when x11 in DISTRO_FEATURES
  19. REQUIRED_DISTRO_FEATURES = "x11 opengl"
  20. # Remove the mesa-glu dependency in mesa-glu-dev, as mesa-glu is empty
  21. RDEPENDS_${PN}-dev = ""