diff options
Diffstat (limited to 'meta-oe/recipes-core')
-rw-r--r-- | meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb b/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb new file mode 100644 index 000000000..cf1a383d9 --- /dev/null +++ b/meta-oe/recipes-core/jpeg/libjpeg-turbo_svn.bb | |||
@@ -0,0 +1,30 @@ | |||
1 | DESCRIPTION = "libjpeg-turbo is a derivative of libjpeg that uses SIMD instructions (MMX, SSE2, NEON) to accelerate baseline JPEG compression and decompression" | ||
2 | HOMEPAGE = "http://libjpeg-turbo.org/" | ||
3 | |||
4 | LICENSE ="BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://cdjpeg.h;endline=12;md5=78fa8dbac547bb5b2a0e6457a6cfe21d \ | ||
6 | file://jpeglib.h;endline=14;md5=7bb9a39828a1b1e84acd4e8aec1e5532 \ | ||
7 | file://djpeg.c;endline=13;md5=e85613b52f2906c5dfc0e21ec902cb33 \ | ||
8 | |||
9 | PV = "8c+1.2.0" | ||
10 | SRCREV = "733" | ||
11 | SRC_URI = "svn://libjpeg-turbo.svn.sourceforge.net/svnroot/libjpeg-turbo;proto=https;module=trunk" | ||
12 | |||
13 | S = "${WORKDIR}/trunk" | ||
14 | |||
15 | # Drop-in replacement for jpeg | ||
16 | PROVIDES = "jpeg" | ||
17 | |||
18 | inherit autotools pkgconfig | ||
19 | |||
20 | EXTRA_OECONF = "--with-jpeg8 " | ||
21 | |||
22 | PACKAGES =+ "jpeg-tools libturbojpeg" | ||
23 | |||
24 | DESCRIPTION_jpeg-tools = "The jpeg-tools package includes the client programs for access libjpeg functionality. These tools allow for the compression, decompression, transformation and display of JPEG files." | ||
25 | FILES_jpeg-tools = "${bindir}/*" | ||
26 | |||
27 | FILES_libturbojpeg = "${libdir}/libturbojpeg.so" | ||
28 | INSANE_SKIP_libturbojpeg = "dev-so" | ||
29 | |||
30 | BBCLASSEXTEND = "native" | ||