diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2013-04-05 23:03:36 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-04-09 21:34:16 +0200 |
commit | 1f4976c2b3fdb11abf6e30c3f969986f0d558da8 (patch) | |
tree | 1e32a3de43393901288356fde7425038fde0551e /meta-oe | |
parent | c4a041561079a34cfbf493163e09c567008d0b11 (diff) | |
download | meta-openembedded-1f4976c2b3fdb11abf6e30c3f969986f0d558da8.tar.gz |
pngcheck initial add 2.3.0
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb b/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb new file mode 100644 index 000000000..59f22df3f --- /dev/null +++ b/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "pngcheck verifies the integrity of PNG, JNG and MNG files" | ||
2 | HOMEPAGE = "http://www.libpng.org/pub/png/apps/pngcheck.html" | ||
3 | LICENSE = "GPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://gpl/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | ||
5 | DEPENDS = "zlib libpng" | ||
6 | |||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/project/png-mng/${BPN}/${PV}/${BPN}-${PV}.tar.gz" | ||
8 | |||
9 | SRC_URI[md5sum] = "980bd6d9a3830fdce746d7fe3c9166ee" | ||
10 | SRC_URI[sha256sum] = "77f0a039ac64df55fbd06af6f872fdbad4f639d009bbb5cd5cbe4db25690f35f" | ||
11 | |||
12 | do_compile() { | ||
13 | oe_runmake -f Makefile.unx INCS=-I${STAGING_DIR_HOST}${incdir} LIBS=${STAGING_DIR_HOST}${libdir}/libz.a | ||
14 | } | ||
15 | |||
16 | do_install() { | ||
17 | install -d ${D}${bindir} | ||
18 | install pngcheck ${D}${bindir} | ||
19 | install png-fix-IDAT-windowsize ${D}${bindir} | ||
20 | install pngsplit ${D}${bindir} | ||
21 | } | ||
22 | |||