strace: cross compile fix: pass HOST_*FLAGS in to ./configure
[openwrt/svn-archive/archive.git] / package / devel / strace / Makefile
1 #
2 # Copyright (C) 2006-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=strace
12
13 PKG_VERSION:=4.10
14 PKG_RELEASE:=1
15 PKG_MD5SUM:=107a5be455493861189e9b57a3a51912
16
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
18 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
19
20 PKG_LICENSE:=BSD-3c
21 PKG_LICENSE_FILES:=COPYRIGHT
22
23 PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org>
24
25 PKG_FIXUP:=autoreconf
26 PKG_INSTALL:=1
27
28 include $(INCLUDE_DIR)/package.mk
29
30 CONFIGURE_VARS+= \
31 LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)" \
32 CPPFLAGS_FOR_BUILD="$(HOST_CPPFLAGS)" \
33 CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \
34 CC_FOR_BUILD="$(HOST_CC)"
35
36 define Package/strace
37 SECTION:=utils
38 CATEGORY:=Utilities
39 TITLE:=System call tracer
40 URL:=http://strace.sourceforge.net/
41 endef
42
43 define Package/strace/description
44 A useful diagnostic, instructional, and debugging tool. Allows you to track what
45 system calls a program makes while it is running.
46 endef
47
48 MAKE_FLAGS := \
49 CCOPT="$(TARGET_CFLAGS)"
50
51 define Package/strace/install
52 $(INSTALL_DIR) $(1)/usr/bin
53 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/strace $(1)/usr/bin/
54 endef
55
56 $(eval $(call BuildPackage,strace))