mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-14 15:25:21 +00:00
With the exception of paho-mqtt-cpp, the double protocol= attributes were added to the SRC_URIs when protocol=https was added to all SRC_URIs fetching from github.com in commit b402a3076f (recipes: Update SRC_URI branch and protocols). Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
28 lines
930 B
BlitzBasic
28 lines
930 B
BlitzBasic
SUMMARY = "A simple, lightweight JavaScript API for handling cookies."
|
|
HOMEPAGE = "https://github.com/js-cookie/js-cookie"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e16cf0e247d84f8999bf55865a9c98cf"
|
|
|
|
SRC_URI = "git://github.com/js-cookie/js-cookie.git;protocol=https;branch=master"
|
|
|
|
SRCREV = "0ba77141dd215782cc7770347a457906908c66ff"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
JQUERYCOOKIEDIR = "${datadir}/javascript/jquery-cookie"
|
|
JQUERYCOOKIEDOCDIR = "${docdir}/libjs-jquery-cookie"
|
|
|
|
do_install() {
|
|
install -d ${D}${JQUERYCOOKIEDIR}
|
|
install -m 0644 ${S}/*.js ${D}${JQUERYCOOKIEDIR}
|
|
install -m 0644 ${S}/src/*.mjs ${D}${JQUERYCOOKIEDIR}
|
|
install -m 0644 ${S}/*.json ${D}${JQUERYCOOKIEDIR}
|
|
|
|
install -d ${D}${JQUERYCOOKIEDOCDIR}
|
|
install -m 0644 ${S}/*.md ${D}${JQUERYCOOKIEDOCDIR}
|
|
|
|
}
|
|
|
|
FILES:${PN} += "${datadir}/javascript/jquery-cookie"
|
|
FILES:${PN}-doc += "${docdir}/libjs-jquery-cookie"
|