]> code.ossystems Code Review - meta-freescale.git/commitdiff
libz160: deploy shared lib and headers
authorAdrian Alonso <b38018@freescale.com>
Wed, 24 Aug 2011 22:16:50 +0000 (17:16 -0500)
committerAdrian Alonso <b38018@freescale.com>
Wed, 24 Aug 2011 22:16:50 +0000 (17:16 -0500)
* Deploy libz160 shared library
* Deploys libz160 include headers, this are needed for
  xorg-video-imxfb driver

Signed-off-by: Adrian Alonso <b38018@freescale.com>
meta-fsl-arm/recipes-graphics/amd-gpu-x11-bin/libz160_11.05.01.bb [new file with mode: 0644]

diff --git a/meta-fsl-arm/recipes-graphics/amd-gpu-x11-bin/libz160_11.05.01.bb b/meta-fsl-arm/recipes-graphics/amd-gpu-x11-bin/libz160_11.05.01.bb
new file mode 100644 (file)
index 0000000..4257bcd
--- /dev/null
@@ -0,0 +1,24 @@
+# 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"
+RDEPENDS_${PN}-dev = ""
+
+SRC_URI = "http://auslxsc01.mtwk.freescale.net/ppp/${PN}-bin-${PV}.tar.gz"
+SRC_URI[md5sum] = "f934ab967285aad10ec4bb0263ad549f"
+SRC_URI[sha256sum] = "ead4aab7eecad85a591e72996f785057846a7f9801e86ad6441c47862cceac93"
+
+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}"