blob: 29a1125cd538340413d8b197e3280211a3dc3332 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001DESCRIPTION = "The gflags package contains a C++ library that implements commandline flags processing. It includes built-in support for standard types such as string and the ability to define flags in the source file in which they are used"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05002HOMEPAGE = "https://github.com/gflags/gflags"
Brad Bishop6e60e8b2018-02-01 10:27:11 -05003LICENSE = "BSD-3-Clause"
4LIC_FILES_CHKSUM = "file://COPYING.txt;md5=c80d1a3b623f72bb85a4c75b556551df"
5
6SRC_URI = "git://github.com/gflags/gflags.git"
7SRCREV = "f8a0efe03aa69b3336d8e228b37d4ccb17324b88"
8
9S = "${WORKDIR}/git"
10
Brad Bishop6e60e8b2018-02-01 10:27:11 -050011inherit cmake
12
13EXTRA_OECMAKE="-DBUILD_SHARED_LIBS=ON -DREGISTER_INSTALL_PREFIX=OFF -DLIB_INSTALL_DIR=${baselib}"
14
15PACKAGES =+ "${PN}-bash-completion"
16FILES_${PN}-bash-completion += "${bindir}/gflags_completions.sh"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080017
Brad Bishop6e60e8b2018-02-01 10:27:11 -050018RDEPENDS_${PN}-bash-completion = "bash bash-completion"
Brad Bishop316dfdd2018-06-25 12:45:53 -040019
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080020BBCLASSEXTEND = "native nativesdk"