view src/build-bison.mk @ 4697:90fa244bd63a

of-general: update to v2.1.0 * build_packages.m: update version number * dist-files.mk: remove refs to general patches * src/of-general.mk: update version, checksum * src/of-general-1-fixes.patch: removed * src/of-general-1-symtab-fixes.patch: removed
author John Donoghue
date Tue, 15 May 2018 08:07:32 -0400
parents 0e56fe2d2ef5
children 0eaf83cce070
line wrap: on
line source

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

PKG             := build-bison
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 3.0.4
$(PKG)_CHECKSUM := 8270497aad88c7dd4f2c317298c50513fb0c3c8e
$(PKG)_SUBDIR   := bison-$($(PKG)_VERSION)
$(PKG)_FILE     := bison-$($(PKG)_VERSION).tar.xz
$(PKG)_URL      := ftp://ftp.gnu.org/pub/gnu/bison/$($(PKG)_FILE)
$(PKG)_DEPS     := build-xz

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

define $(PKG)_BUILD
    mkdir '$(1).build'
    cd    '$(1).build' && '$(1)/configure' \
        --prefix='$(BUILD_TOOLS_PREFIX)'
    $(MAKE) -C '$(1).build' -j '$(JOBS)'
    $(MAKE) -C '$(1).build' -j 1 install DESTDIR='$(3)'
endef