changeset 1160:69413ab30653

new package: cunit
author Martin Gerhardy <martin.gerhardy@gmail.com>
date Sat, 18 Sep 2010 21:59:04 +0200
parents 286c23180408
children aa64f7a5d866
files src/cunit.mk
diffstat 1 files changed, 27 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cunit.mk	Sat Sep 18 21:59:04 2010 +0200
@@ -0,0 +1,27 @@
+# This file is part of mingw-cross-env.
+# See doc/index.html for further information.
+
+# cunit
+PKG             := cunit
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 2.1-0
+$(PKG)_CHECKSUM := 05920c1defda3527cee3bc82fb9eadf45c5ea7a1
+$(PKG)_SUBDIR   := CUnit-$($(PKG)_VERSION)
+$(PKG)_FILE     := CUnit-$($(PKG)_VERSION)-src.tar.gz
+$(PKG)_WEBSITE  := http://cunit.sourceforge.net
+$(PKG)_URL      := http://$(SOURCEFORGE_MIRROR)/project/cunit/CUnit/$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_DEPS     := gcc
+
+define $(PKG)_UPDATE
+    $(call SOURCEFORGE_FILES,http://sourceforge.net/projects/cunit/files/cunit/) | \
+    $(SED) -n 's,.*CUnit-\([0-9][^>]*\)\.tar.*,\1,p' | \
+    tail -1
+endef
+
+define $(PKG)_BUILD
+    cd '$(1)' && ./configure \
+        --host='$(TARGET)' \
+        --disable-shared \
+        --prefix='$(PREFIX)/$(TARGET)'
+    $(MAKE) -C '$(1)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= defexec_DATA=
+endef