54 lines
1.4 KiB
PHP
54 lines
1.4 KiB
PHP
inherit pkgconfig autotools-brokensep gettext
|
|
|
|
SRC_URI = " \
|
|
git://repo.or.cz/r/git2cl.git;protocol=http;destsuffix=git/tools/git2cl;name=git2cl \
|
|
git://repo.or.cz/r/jimtcl.git;protocol=http;destsuffix=git/jimtcl;name=jimtcl \
|
|
git://repo.or.cz/r/libjaylink.git;protocol=http;destsuffix=git/src/jtag/drivers/libjaylink;name=libjaylink \
|
|
"
|
|
|
|
SRCREV_git2cl = "8373c9f74993e218a08819cbcdbab3f3564bbeba"
|
|
SRCREV_jimtcl = "a9bf5975fd0f89974d689a2d9ebd0873c8d64787"
|
|
SRCREV_libjaylink = "8645845c1abebd004e991ba9a7f808f4fd0c608b"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
BBCLASSEXTEND += "native nativesdk"
|
|
|
|
DEPENDS += "hidapi-stm32mp"
|
|
DEPENDS_class-native = "hidapi-stm32mp-native"
|
|
DEPENDS_class-nativesdk = "nativesdk-hidapi-stm32mp"
|
|
|
|
RDEPENDS_${PN} += "libusb1 hidapi-stm32mp"
|
|
|
|
EXTRA_OECONF = " \
|
|
--disable-werror \
|
|
--enable-stlink \
|
|
--enable-cmsis-dap \
|
|
MAKEINFO=true \
|
|
HIDAPI_CFLAGS=-I${STAGING_INCDIR}/hidapi \
|
|
HIDAPI_LIBS=-L${STAGING_LIBDIR}\ -lhidapi-libusb \
|
|
"
|
|
|
|
do_configure() {
|
|
./bootstrap nosubmodule
|
|
oe_runconf ${EXTRA_OECONF}
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake DESTDIR=${D} install
|
|
if [ -e "${D}${infodir}" ]; then
|
|
rm -Rf ${D}${infodir}
|
|
fi
|
|
if [ -e "${D}${mandir}" ]; then
|
|
rm -Rf ${D}${mandir}
|
|
fi
|
|
if [ -e "${D}${bindir}/.debug" ]; then
|
|
rm -Rf ${D}${bindir}/.debug
|
|
fi
|
|
}
|
|
|
|
FILES_${PN} = " \
|
|
${datadir}/openocd/* \
|
|
${bindir}/openocd \
|
|
"
|