aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/pngcheck/pngcheck_2.3.0.bb
blob: d523b7a8f5308e6b0bd61cc93425677c7ffb1570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SUMMARY = "pngcheck verifies the integrity of PNG, JNG and MNG files"
HOMEPAGE = "http://www.libpng.org/pub/png/apps/pngcheck.html"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://gpl/COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "zlib libpng"

SRC_URI = "${SOURCEFORGE_MIRROR}/project/png-mng/${BPN}/${PV}/${BPN}-${PV}.tar.gz"

SRC_URI[md5sum] = "980bd6d9a3830fdce746d7fe3c9166ee"
SRC_URI[sha256sum] = "77f0a039ac64df55fbd06af6f872fdbad4f639d009bbb5cd5cbe4db25690f35f"

EXTRA_OEMAKE = "-e MAKEFLAGS="

do_compile() {
    oe_runmake -f Makefile.unx INCS=-I${STAGING_DIR_HOST}${incdir} LIBS=${STAGING_DIR_HOST}${libdir}/libz.a
}

do_install() {
    install -d ${D}${bindir}
    install pngcheck ${D}${bindir}
    install png-fix-IDAT-windowsize ${D}${bindir}
    install pngsplit ${D}${bindir}
}
> OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/meta-poky/conf/toasterconf.json
blob: 93fb9291f9266ef11a51627de17889025012f586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
    "config": {
        "MACHINE"      : "qemux86",
        "DISTRO"       : "poky",
        "DL_DIR"       : "${TOPDIR}/../downloads",
        "IMAGE_FSTYPES": "ext3 jffs2 tar.bz2",
        "IMAGE_INSTALL_append": "",
        "PACKAGE_CLASSES": "package_rpm",
        "SSTATE_DIR"   : "${TOPDIR}/../sstate-cache"
    },
    "layersources": [
        {
            "name": "Local Yocto Project",
            "sourcetype": "local",
            "apiurl": "../../",
            "branches": ["HEAD" ],
            "layers": [
                {
                    "name": "openembedded-core",
                    "local_path": "meta",
                    "vcs_url": "remote:origin",
                    "dirpath": "meta"
                },
                {
                    "name": "meta-poky",
                    "local_path": "meta-poky",
                    "vcs_url": "remote:origin",
                    "dirpath": "meta-poky"
                },
                {
                    "name": "meta-yocto-bsp",
                    "local_path": "meta-yocto-bsp",
                    "vcs_url": "remote:origin",
                    "dirpath": "meta-yocto-bsp"
                }

            ]
        },
        {
            "name": "OpenEmbedded",
            "sourcetype": "layerindex",
            "apiurl": "http://layers.openembedded.org/layerindex/api/",
            "branches": ["master"]
        },
        {
            "name": "Imported layers",
            "sourcetype": "imported",
            "apiurl": "",
            "branches": ["master", "HEAD"]

        }
    ],
    "bitbake" : [
        {
            "name": "master",
            "giturl": "remote:origin",
            "branch": "master",
            "dirpath": "bitbake"
        },
        {
            "name": "HEAD",
            "giturl": "remote:origin",
            "branch": "HEAD",
            "dirpath": "bitbake"
        }
    ],

    "defaultrelease": "master",

    "releases": [
        {
            "name": "master",
            "description": "Yocto Project master",
            "bitbake": "master",
            "branch": "master",
            "defaultlayers": [ "openembedded-core", "meta-poky", "meta-yocto-bsp"],
            "layersourcepriority": { "Imported layers": 99, "Local Yocto Project" : 10, "OpenEmbedded" :  0 },
            "helptext": "Toaster will run your builds using the tip of the <a href=\"http://git.yoctoproject.org/cgit/cgit.cgi/poky/log/\">Yocto Project master branch</a>, where active development takes place. This is not a stable branch, so your builds might not work as expected."
        },
        {
            "name": "local",
            "description": "Local Yocto Project",
            "bitbake": "HEAD",
            "branch": "HEAD",
            "defaultlayers": [ "openembedded-core", "meta-poky", "meta-yocto-bsp"],
            "layersourcepriority": { "Imported layers": 99, "Local Yocto Project" : 10, "OpenEmbedded" :  0 },
            "helptext": "Toaster will run your builds with the version of the Yocto Project you have cloned or downloaded to your computer."
        }
    ]
}