mxe/src/lzo.mk

26 lines
832 B
Makefile

# This file is part of MXE.
# See index.html for further information.
PKG := lzo
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.08
$(PKG)_CHECKSUM := ac1b3e4dee46febe9fd28737eb7f5692d3232ef1a01da10444394c3d47536614
$(PKG)_SUBDIR := lzo-$($(PKG)_VERSION)
$(PKG)_FILE := lzo-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://www.oberhumer.com/opensource/lzo/download/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://www.oberhumer.com/opensource/lzo/download/' | \
grep 'lzo-' | \
grep -v 'minilzo-' | \
$(SED) -n 's,.*lzo-\([0-9][^>]*\)\.tar.*,\1,p' | \
tail -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
$(MXE_CONFIGURE_OPTS)
$(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= LDFLAGS=-no-undefined
endef