You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/flex.mk

27 lines
779 B

# This file is part of MXE.
# See index.html for further information.
PKG := flex
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.5.37
$(PKG)_CHECKSUM := db4b140f2aff34c6197cab919828cc4146aae218
$(PKG)_SUBDIR := flex-$($(PKG)_VERSION)
$(PKG)_FILE := flex-$($(PKG)_VERSION).tar.bz2
$(PKG)_URL := http://prdownloads.sourceforge.net/flex/$($(PKG)_FILE)
$(PKG)_DEPS :=
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://flex.sourceforge.net/' | \
$(SED) -n 's,.*flex-\([0-9][^"]*\)\.tar.*,\1,p' | \
$(SORT) -V | \
tail -1
endef
define $(PKG)_BUILD_$(BUILD)
mkdir '$(1).build'
cd '$(1).build' && '$(1)/configure' \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1).build' -j '$(JOBS)'
$(MAKE) -C '$(1).build' -j 1 install
endef