33 lines
807 B
BlitzBasic
33 lines
807 B
BlitzBasic
# Copyright (C) 2017, 2018, Digi International Inc.
|
|
|
|
SUMMARY = "DEY Digi APIX examples"
|
|
SECTION = "examples"
|
|
LICENSE = "ISC"
|
|
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/ISC;md5=f3b90e78ea0cffb20bf5cca7947a896d"
|
|
|
|
DEPENDS = "libdigiapix"
|
|
|
|
SRCBRANCH = "dey-2.4/maint"
|
|
SRCREV = "95243cf2de71aa273f8088c7b2c7eb187f8ef179"
|
|
|
|
LIBDIGIAPIX_STASH = "${DIGI_MTK_GIT}dey/dey-examples.git;protocol=ssh"
|
|
LIBDIGIAPIX_GITHUB = "${DIGI_GITHUB_GIT}/dey-examples.git;protocol=git"
|
|
|
|
LIBDIGIAPIX_GIT_URI ?= "${@base_conditional('DIGI_INTERNAL_GIT', '1' , '${LIBDIGIAPIX_STASH}', '${LIBDIGIAPIX_GITHUB}', d)}"
|
|
|
|
SRC_URI = "${LIBDIGIAPIX_GIT_URI};nobranch=1"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit pkgconfig
|
|
|
|
EXTRA_OEMAKE += "-f libdigiapix-examples.mk"
|
|
|
|
do_compile() {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR=${D} install
|
|
}
|