xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/docopt.cpp/docopt.cpp_git.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunSUMMARY = "C++11 port of docopt command-line interface description language and parser"
2*4882a593Smuzhiyun
3*4882a593SmuzhiyunDESCRIPTION = "docopt is library that lets you define a command line interface with the \
4*4882a593Smuzhiyunutility argument syntax that has been used by command line utilities for \
5*4882a593Smuzhiyundecades (formalized in POSIX.1-2017). From the description, docopt \
6*4882a593Smuzhiyunautomatically generates a parser for the command line arguments."
7*4882a593Smuzhiyun
8*4882a593SmuzhiyunHOMEPAGE = "https://github.com/docopt/docopt.cpp"
9*4882a593Smuzhiyun
10*4882a593SmuzhiyunLICENSE = "MIT | BSL-1.0"
11*4882a593SmuzhiyunLIC_FILES_CHKSUM = "\
12*4882a593Smuzhiyun    file://LICENSE-Boost-1.0;md5=e4224ccaecb14d942c71d31bef20d78c \
13*4882a593Smuzhiyun    file://LICENSE-MIT;md5=4b242fd9ef20207e18286d73da8a6677 \
14*4882a593Smuzhiyun"
15*4882a593Smuzhiyun
16*4882a593SmuzhiyunDEPENDS = "boost"
17*4882a593SmuzhiyunSRCREV = "42ebcec9dc2c99a1b3a4542787572045763ad196"
18*4882a593SmuzhiyunPV = "0.6.3+git${SRCPV}"
19*4882a593Smuzhiyun
20*4882a593SmuzhiyunSRC_URI = "\
21*4882a593Smuzhiyun    git://github.com/docopt/docopt.cpp.git;protocol=https;branch=master \
22*4882a593Smuzhiyun"
23*4882a593Smuzhiyun
24*4882a593SmuzhiyunS = "${WORKDIR}/git"
25*4882a593Smuzhiyun
26*4882a593Smuzhiyuninherit cmake
27