blob: 068fb19e2649dee158f14d86e8f7b45f87a40d91 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "The OpenGL utility toolkit"
2DESCRIPTION = "GLU is a utility toolkit used with OpenGL implementations"
3
4HOMEPAGE = "http://mesa3d.org"
5BUGTRACKER = "https://bugs.freedesktop.org"
6SECTION = "x11"
7LICENSE = "MIT"
8LIC_FILES_CHKSUM = "file://include/GL/glu.h;endline=29;md5=6b79c570f644363b356456e7d44471d9 \
9 file://src/libtess/tess.c;endline=29;md5=6b79c570f644363b356456e7d44471d9"
10
11# Epoch as this used to be part of mesa
12PE = "2"
13PR = "0"
14
Brad Bishop08902b02019-08-20 09:16:51 -040015SRC_URI = "https://mesa.freedesktop.org/archive/glu/glu-${PV}.tar.gz"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
Brad Bishop08902b02019-08-20 09:16:51 -040017SRC_URI[md5sum] = "5599a0e0a97335e10239d9165aced60d"
18SRC_URI[sha256sum] = "f6f484cfcd51e489afe88031afdea1e173aa652697e4c19ddbcb8260579a10f7"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
20S = "${WORKDIR}/glu-${PV}"
21
22DEPENDS = "virtual/libgl"
23
24inherit autotools pkgconfig distro_features_check
25
26# Requires libGL.so which is provided by mesa when x11 in DISTRO_FEATURES
Brad Bishop6e60e8b2018-02-01 10:27:11 -050027REQUIRED_DISTRO_FEATURES = "x11 opengl"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028
29# Remove the mesa-glu dependency in mesa-glu-dev, as mesa-glu is empty
30RDEPENDS_${PN}-dev = ""