mxe/src/cppunit.mk

33 lines
981 B
Makefile
Raw Normal View History

2012-03-28 14:46:58 +01:00
# This file is part of MXE.
2012-03-29 11:14:15 +01:00
# See index.html for further information.
PKG := cppunit
$(PKG)_IGNORE :=
$(PKG)_VERSION := 1.13.2
$(PKG)_CHECKSUM := 3f47d246e3346f2ba4d7c9e882db3ad9ebd3fcbd2e8b732f946e0e3eeb9f429f
$(PKG)_SUBDIR := cppunit-$($(PKG)_VERSION)
$(PKG)_FILE := cppunit-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://dev-www.libreoffice.org/src/$($(PKG)_FILE)
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
2014-09-04 05:32:43 +01:00
$(WGET) -q -O- 'http://dev-www.libreoffice.org/src/' | \
$(SED) -n 's,.*href="cppunit-\([0-9][^"]*\)\.tar.*,\1,p' | \
$(SORT) -Vr | \
head -1
endef
define $(PKG)_BUILD
cd '$(1)' && ./configure \
--host='$(TARGET)' \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)' \
--disable-doxygen \
--disable-dot \
--disable-html-docs \
--disable-latex-docs
$(MAKE) -C '$(1)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= defexec_DATA=
endef
$(PKG)_BUILD_SHARED =