summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-devtools/swagger-ui/swagger-ui_5.32.1.bb
blob: bc9b4148480f3a98d78c7fe47896a5c5bee201f4 (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 = "Visually render documentation for an API defined with the OpenAPI"
DESCRIPTION = "\
    Swagger UI allows anyone  be it your development team or your end consumers  to visualize and \
    interact with the APIs resources without having any of the implementation logic in place. \
    Its automatically generated from your OpenAPI (formerly known as Swagger) Specification, \
    with the visual documentation making it easy for back end implementation and client side consumption. \
    "
HOMEPAGE = "https://github.com/swagger-api/swagger-ui"
SECTION = "net"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"

SRC_URI = "git://github.com/swagger-api/swagger-ui;branch=master;protocol=https;tag=v${PV}"

SRCREV = "d361f5b3570b8ade67fb1c02cf7a676fcb441479"

CVE_STATUS[CVE-2016-1000229] = "fixed-version: fixed since 2.2.1"


do_install() {
    install -d ${D}${localstatedir}/www/openapi/static
    cp -r ${S}/dist/* ${D}${localstatedir}/www/openapi/static
}