Fix "program" spelling
[openadk.git] / package / gdb-arc / Makefile
blob2beb60e81473664c8dfa5368bc08b17fe526877a
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include ${ADK_TOPDIR}/rules.mk
6 PKG_NAME:= gdb
7 PKG_VERSION:= arc-2018.03-release-gdb
8 PKG_GIT:= tag
9 PKG_RELEASE:= 1
10 PKG_DESCR:= program debugger
11 PKG_SECTION:= app/debug
12 PKG_DEPENDS:= libncurses zlib libexpat libthread-db
13 PKG_BUILDDEP:= ncurses readline expat zlib
14 PKG_SITES:= https://github.com/foss-for-synopsys-dwc-arc-processors/binutils-gdb.git
16 PKG_ARCH_DEPENDS:= arc
18 include ${ADK_TOPDIR}/mk/package.mk
20 $(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
22 CONFIGURE_ARGS+= --enable-static \
23 --without-uiout \
24 --disable-tui \
25 --disable-gdbtk \
26 --disable-gdbserver \
27 --without-x \
28 --disable-sim \
29 --disable-werror \
30 --without-python \
31 --without-included-gettext \
32 --without-auto-load-safe-path \
33 --disable-install-libiberty \
34 --disable-install-libbfd \
35 --with-curses \
36 --enable-gdbmi
38 gdb-install:
39 ${INSTALL_DIR} ${IDIR_GDB}/usr/bin
40 ${INSTALL_BIN} ${WRKINST}/usr/bin/gdb \
41 ${IDIR_GDB}/usr/bin/
43 include ${ADK_TOPDIR}/mk/pkg-bottom.mk