mxe/src/cunit.mk

29 lines
967 B
Makefile
Raw Permalink Normal View History

# This file is part of MXE. See LICENSE.md for licensing information.
2010-09-18 20:59:04 +01:00
PKG := cunit
2017-03-05 03:41:39 +00:00
$(PKG)_WEBSITE := https://cunit.sourceforge.io/
2010-09-18 20:59:04 +01:00
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.1-3
$(PKG)_CHECKSUM := f5b29137f845bb08b77ec60584fdb728b4e58f1023e6f249a464efa49a40f214
2010-09-18 20:59:04 +01:00
$(PKG)_SUBDIR := CUnit-$($(PKG)_VERSION)
$(PKG)_FILE := CUnit-$($(PKG)_VERSION).tar.bz2
2017-03-05 03:41:39 +00:00
$(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/cunit/CUnit/$($(PKG)_VERSION)/$($(PKG)_FILE)
$(PKG)_DEPS := cc
2010-09-18 20:59:04 +01:00
define $(PKG)_UPDATE
2017-03-04 10:33:47 +00:00
$(WGET) -q -O- 'https://sourceforge.net/projects/cunit/files/CUnit/' | \
$(SED) -n 's,.*/projects/.*/\([0-9][^"]*\)/".*,\1,p' | \
head -1
2010-09-18 20:59:04 +01:00
endef
define $(PKG)_BUILD
cd '$(1)' && autoreconf -fi
2010-09-18 20:59:04 +01:00
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= defexec_DATA=
endef
$(PKG)_BUILD_SHARED =