mxe/src/ucl.mk

30 lines
956 B
Makefile
Raw Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2015-11-08 22:25:20 +00:00
PKG := ucl
2017-03-05 03:41:39 +00:00
$(PKG)_WEBSITE := https://www.oberhumer.com/opensource/ucl/
$(PKG)_DESCR := UCL
2015-11-08 22:25:20 +00:00
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.03
$(PKG)_CHECKSUM := b865299ffd45d73412293369c9754b07637680e5c826915f097577cd27350348
$(PKG)_SUBDIR := ucl-$($(PKG)_VERSION)
$(PKG)_FILE := ucl-$($(PKG)_VERSION).tar.gz
2017-03-05 03:41:39 +00:00
$(PKG)_URL := https://www.oberhumer.com/opensource/ucl/download/$($(PKG)_FILE)
2015-11-08 22:25:20 +00:00
$(PKG)_DEPS := gcc
$(PKG)_DEPS_$(BUILD) :=
$(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS)
2015-11-08 22:25:20 +00:00
define $(PKG)_UPDATE
2017-03-05 03:41:39 +00:00
$(WGET) -q -O- 'https://www.oberhumer.com/opensource/ucl/' | \
2015-11-08 22:25:20 +00:00
$(SED) -n 's,.*ucl-\([0-9][^"]*\)\.tar.*,\1,p' | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && \
./configure \
2016-05-26 18:29:03 +01:00
$(MXE_CONFIGURE_OPTS) \
2016-08-17 00:22:41 +01:00
CFLAGS='-std=gnu90 -fPIC'
2015-11-08 22:25:20 +00:00
$(MAKE) -C '$(1)' -j '$(JOBS)' LDFLAGS=-no-undefined
$(MAKE) -C '$(1)' -j 1 install
endef