blob: 4d5e20514253dd18ca32aae714569f2a98b23848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
SUMMARY = "Enumerate all known properties of OpenCL platform and devices."
DESCRIPTION = "clinfo is a simple command-line application that enumerates \
all possible (known) properties of the OpenCL platform and devices \
available on the system."
HOMEPAGE = "https://github.com/Oblomov/clinfo"
LICENSE = "CC0-1.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=fd8857f774dfb0eefe1e80c8f9240a7e"
inherit features_check
REQUIRED_DISTRO_FEATURES = "opencl"
SRC_URI = "git://github.com/Oblomov/clinfo.git;protocol=https;branch=master"
SRCREV = "748c3930a9b9cb826e631d77439e2cb8f84f5bcf"
DEPENDS += "opencl-headers virtual/libopencl1"
do_install() {
oe_runmake install PREFIX=${D}${prefix} MANDIR=${D}${mandir}
}
|