freeglut_3.2.1.bb 775 B

1234567891011121314151617181920
  1. DESCRIPTION = "FreeGLUT is a free-software/open-source alternative to the OpenGL \
  2. Utility Toolkit (GLUT) library"
  3. LICENSE = "MIT"
  4. LIC_FILES_CHKSUM = "file://COPYING;md5=89c0b58a3e01ce3d8254c9f59e78adfb"
  5. SRC_URI = "https://sourceforge.net/projects/${BPN}/files/${BPN}/${PV}/${BPN}-${PV}.tar.gz"
  6. SRC_URI[md5sum] = "cd5c670c1086358598a6d4a9d166949d"
  7. SRC_URI[sha256sum] = "d4000e02102acaf259998c870e25214739d1f16f67f99cb35e4f46841399da68"
  8. inherit cmake features_check
  9. # depends on virtual/libx11, virtual/libgl
  10. REQUIRED_DISTRO_FEATURES = "x11 opengl"
  11. # Do not use -fno-common, check back when upgrading to new version it might not be needed
  12. CFLAGS += "-fcommon"
  13. PROVIDES += "mesa-glut"
  14. DEPENDS = "virtual/libx11 libxmu libxi virtual/libgl libglu libxrandr"