view src/gdb.mk @ 4840:21e184cc4fd7

* src/texinfo.mk: Dont install own info.exe when using msys2 (Bug #54604)
author John Donoghue
date Wed, 05 Sep 2018 15:02:20 -0400
parents d9a0488f792d
children 81b9b5a82c77
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := gdb
$(PKG)_VERSION  := 8.1.1
$(PKG)_CHECKSUM := 8c04c12f11b5ba74e7506785632c7fc593ead90f
$(PKG)_SUBDIR   := gdb-$($(PKG)_VERSION)
$(PKG)_FILE     := gdb-$($(PKG)_VERSION).tar.xz
$(PKG)_URL      := ftp://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE)
$(PKG)_URL_2    := ftp://ftp.cs.tu-berlin.de/pub/gnu/$(PKG)/$($(PKG)_FILE)
$(PKG)_DEPS     := expat libiconv readline zlib

define $(PKG)_UPDATE
    $(WGET) -q -O- 'http://ftp.gnu.org/gnu/gdb/?C=M;O=D' | \
    $(SED) -n 's,.*<a href="gdb-\([0-9][^"]*\)\.tar.*,\1,p' | \
    $(SORT) -V | \
    tail -1
endef

## Don't use --disable-static when configuring gdb as that will
## disable building the required libbfd.a library.

define $(PKG)_BUILD
    cd '$(1)' && ./configure \
        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
        --prefix='$(HOST_PREFIX)' \
        --with-system-readline \
        CONFIG_SHELL=$(SHELL)
    $(MAKE) -C '$(1)' -j '$(JOBS)'
    $(MAKE) -C '$(1)' -j 1 install MAKEINFO=true
endef