clinfo_2.2.18.04.06.bb 646 B

1234567891011121314151617181920
  1. SUMMARY = "Enumerate all known properties of OpenCL platform and devices."
  2. DESCRIPTION = "clinfo is a simple command-line application that enumerates \
  3. all possible (known) properties of the OpenCL platform and devices \
  4. available on the system."
  5. HOMEPAGE = "https://github.com/Oblomov/clinfo"
  6. LICENSE = "CC0-1.0"
  7. LIC_FILES_CHKSUM = "file://LICENSE;md5=fd8857f774dfb0eefe1e80c8f9240a7e"
  8. SRC_URI = "git://github.com/Oblomov/clinfo.git;protocol=https"
  9. SRCREV = "59d0daf898e48d76ccbb788acbba258fa0a8ba7c"
  10. S = "${WORKDIR}/git"
  11. DEPENDS += "opencl-headers opencl-icd-loader"
  12. do_install() {
  13. install -D -m 755 clinfo ${D}${bindir}/clinfo
  14. }