# -*-makefile-*- # # Copyright (C) 2005 by Shahar Livne # 2009 by Marc Kleine-Budde # 2014 by Bernhard Seßler # # See CREDITS for details about who has contributed to this project. # # For further information about the PTXdist project and license conditions # see the README file. # # # We provide this package # PACKAGES-$(PTXCONF_CPPUNIT) += cppunit # # Paths and names # CPPUNIT_VERSION := 1.13.2 CPPUNIT_MD5 := d1c6bdd5a76c66d2c38331e2d287bc01 CPPUNIT := cppunit-$(CPPUNIT_VERSION) CPPUNIT_SUFFIX := tar.gz CPPUNIT_URL := http://dev-www.libreoffice.org/src/$(CPPUNIT).$(CPPUNIT_SUFFIX) CPPUNIT_SOURCE := $(SRCDIR)/$(CPPUNIT).$(CPPUNIT_SUFFIX) CPPUNIT_DIR := $(BUILDDIR)/$(CPPUNIT) # ---------------------------------------------------------------------------- # Prepare # ---------------------------------------------------------------------------- CPPUNIT_CONF_TOOL := autoconf CPPUNIT_CONF_OPT := \ $(CROSS_AUTOCONF_USR) \ --disable-doxygen # ---------------------------------------------------------------------------- # Target-Install # ---------------------------------------------------------------------------- $(STATEDIR)/cppunit.targetinstall: @$(call targetinfo) @$(call install_init, cppunit) @$(call install_fixup, cppunit,PRIORITY,optional) @$(call install_fixup, cppunit,SECTION,base) @$(call install_fixup, cppunit,AUTHOR,"Shahar Livne ") @$(call install_fixup, cppunit,DESCRIPTION,missing) @$(call install_lib, cppunit, 0, 0, 0644, libcppunit-1.13) @$(call install_finish, cppunit) @$(call touch) # vim: syntax=make