mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +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>
31 lines
1.1 KiB
BlitzBasic
31 lines
1.1 KiB
BlitzBasic
SUMMARY = "JavaScript library for dynamic web applications"
|
|
HOMEPAGE = "https://jquery.com/"
|
|
LICENSE = "GPL-2.0-only | MIT"
|
|
LIC_FILES_CHKSUM = "file://usr/share/doc/libjs-jquery/copyright;md5=04bfd6e5b918af29f2f79ce44527da62"
|
|
|
|
SRC_URI = "http://kr.archive.ubuntu.com/ubuntu/pool/main/j/jquery/${BPN}_${PV}~dfsg-3_all.deb"
|
|
|
|
SRC_URI[sha256sum] = "e04d192c2356e9d4c2b2c7d83fde9408713212b53c4d106e5b9e46c1a56da33b"
|
|
|
|
UPSTREAM_CHECK_URI = "http://kr.archive.ubuntu.com/ubuntu/pool/main/j/jquery/"
|
|
UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)"
|
|
|
|
JQUERYDIR = "${datadir}/javascript/jquery"
|
|
JQUERYDOCDIR = "${docdir}/libjs-jquery"
|
|
|
|
S = "${UNPACKDIR}"
|
|
|
|
do_install() {
|
|
install -d -m 0755 ${D}${JQUERYDIR}
|
|
install -m 0644 ${S}${JQUERYDIR}/jquery.js ${D}${JQUERYDIR}/
|
|
install -m 0644 ${S}${JQUERYDIR}/jquery.min.js ${D}${JQUERYDIR}/
|
|
|
|
ln -sf jquery.min.js ${D}${JQUERYDIR}/jquery.lite.js
|
|
ln -sf jquery.min.js ${D}${JQUERYDIR}/jquery.pack.js
|
|
|
|
install -d -m 0644 ${D}${JQUERYDOCDIR}
|
|
install -m 0644 ${S}${JQUERYDOCDIR}/copyright ${D}${JQUERYDOCDIR}/
|
|
}
|
|
|
|
FILES:${PN} = "/usr/share/javascript/jquery"
|