summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libjs
diff options
context:
space:
mode:
authorZheng Ruoqin <zhengrq.fnst@fujitsu.com>2022-02-16 15:50:17 +0800
committerKhem Raj <raj.khem@gmail.com>2022-02-16 10:55:24 -0800
commit69db1c7a8218917b3a746474ad13cacb3335863b (patch)
tree88dd7a6c66deb56622d69a6a612f1eb556a3b2c6 /meta-oe/recipes-support/libjs
parentea223bd3da4ff8463a4d869d10a05169c3a50d04 (diff)
downloadmeta-openembedded-69db1c7a8218917b3a746474ad13cacb3335863b.tar.gz
libjs-jquery: Upgrade to 3.3.1.
libjs-jquery has been removed a few days ago because the version is too old. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libjs')
-rw-r--r--meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb b/meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb
new file mode 100644
index 0000000000..1a5c35a4d2
--- /dev/null
+++ b/meta-oe/recipes-support/libjs/libjs-jquery_3.3.1.bb
@@ -0,0 +1,27 @@
1SUMMARY = "JavaScript library for dynamic web applications"
2HOMEPAGE = "https://jquery.com/"
3LICENSE = "GPL-2 | MIT"
4LIC_FILES_CHKSUM = "file://usr/share/doc/libjs-jquery/copyright;md5=04bfd6e5b918af29f2f79ce44527da62"
5
6SRC_URI = "http://kr.archive.ubuntu.com/ubuntu/pool/main/j/jquery/${BPN}_${PV}~dfsg-3_all.deb"
7
8SRC_URI[sha256sum] = "e04d192c2356e9d4c2b2c7d83fde9408713212b53c4d106e5b9e46c1a56da33b"
9
10JQUERYDIR = "${datadir}/javascript/jquery"
11JQUERYDOCDIR = "${docdir}/libjs-jquery"
12
13S = "${WORKDIR}"
14
15do_install() {
16 install -d -m 0755 ${D}${JQUERYDIR}
17 install -m 0644 ${S}${JQUERYDIR}/jquery.js ${D}${JQUERYDIR}/
18 install -m 0644 ${S}${JQUERYDIR}/jquery.min.js ${D}${JQUERYDIR}/
19
20 ln -sf jquery.min.js ${D}${JQUERYDIR}/jquery.lite.js
21 ln -sf jquery.min.js ${D}${JQUERYDIR}/jquery.pack.js
22
23 install -d -m 0644 ${D}${JQUERYDOCDIR}
24 install -m 0644 ${S}${JQUERYDOCDIR}/copyright ${D}${JQUERYDOCDIR}/
25}
26
27FILES:${PN} = "/usr/share/javascript/jquery"