diff options
author | 2011-11-07 20:10:46 -0600 | |
---|---|---|
committer | 2011-11-07 20:10:46 -0600 | |
commit | 0026cd1df0c8a77fc0888b2085902bfaf4468372 (patch) | |
tree | bb83e290a22ab62acdc19bc9f689a8a9beb0252b /recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb | |
parent | 36f0a9ef7353c583b40966b6f6755debdbfa6bff (diff) | |
download | meta-fsl-arm-0026cd1df0c8a77fc0888b2085902bfaf4468372.tar.gz meta-fsl-arm-0026cd1df0c8a77fc0888b2085902bfaf4468372.tar.bz2 meta-fsl-arm-0026cd1df0c8a77fc0888b2085902bfaf4468372.zip |
libz160: update to release version 11.09.01
* Update to release version 11.09.01
* Include prebuilt shared libraries as part of
freescale meta layer.
Signed-off-by: Adrian Alonso <aalonso00@gmail.com>
Diffstat (limited to 'recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb')
-rw-r--r-- | recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb b/recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb new file mode 100644 index 0000000..a02ae34 --- /dev/null +++ b/recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb @@ -0,0 +1,25 @@ +# Copyright (C) 2011 Freescale +# Released under the MIT license (see COPYING.MIT for the terms) + +DESCRIPTION = "AMD libz160 gpu driver" +LICENSE = "MIT" +SECTION = "libs" +PR = "r0" + +#todo: Replace for correct AMD license +LIC_FILES_CHKSUM = "file://usr/include/z160.h;endline=28;md5=65dd44cd769091092f38e34cd52cc271" + +SRC_URI = "file://${PN}-bin-${PV}.tar.gz" +SRC_URI[md5sum] = "49b6d51e2ea6651107b08f43715c8c2e" +SRC_URI[sha256sum] = "43b1bebb2656d0c868c10f66ddc064c6324b74694daedfb3f542f93f438232c5" + +do_install () { + install -d ${D}${libdir} + install -d ${D}${includedir} + install -m 0755 ${S}/usr/lib/* ${D}${libdir} + install -m 0644 ${S}/usr/include/* ${D}${includedir} +} + +S = "${WORKDIR}/${PN}-bin-${PV}" +FILES_${PN} = "${libdir}/*.so*" +FILES_${PN}-dev = "${includedir}/*.h" |