mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-18 23:08:06 +00:00
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
19 lines
662 B
BlitzBasic
19 lines
662 B
BlitzBasic
SUMMARY = "Pure-JavaScript CSS selector engine"
|
|
HOMEPAGE = "https://github.com/jquery/sizzle/wiki"
|
|
LICENSE = "GPL-2.0-only & MIT & AFL-2.1"
|
|
LIC_FILES_CHKSUM = "file://MIT-LICENSE.txt;md5=e43aa437a6a1ba421653bd5034333bf9"
|
|
|
|
SRC_URI = "http://kr.archive.ubuntu.com/ubuntu/pool/universe/s/sizzle/sizzle_1.10.18.orig.tar.gz"
|
|
SRC_URI[sha256sum] = "8e04ab84bb74b2e338dffc63cd2e52b007f1d8af01b3d25da4d2e07f2b5890f8"
|
|
|
|
S = "${UNPACKDIR}/sizzle-${PV}"
|
|
|
|
SIZZLEDIR = "${S}/dist"
|
|
|
|
do_install() {
|
|
install -d -m 0755 ${D}/${datadir}/javascript/sizzle/
|
|
install -m 0644 ${SIZZLEDIR}/*.js ${D}/${datadir}/javascript/sizzle/
|
|
}
|
|
|
|
FILES:${PN} = "${datadir}/javascript/sizzle/"
|