c85fa1134d61db807249a2dca4f82dd8b2804984
[openwrt/svn-archive/archive.git] / utils / strace / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=strace
12 PKG_VERSION:=4.5.11
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=28335e15c83456a3db055a0a0efcb4fe
15
16 PKG_SOURCE_URL:=@SF/strace
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
18 PKG_CAT:=bzcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/strace
25 SECTION:=utils
26 CATEGORY:=Utilities
27 TITLE:=System call tracer
28 DESCRIPTION:=A useful diagnostic, instructional, and debugging tool. \\\
29 Allows you to track what system calls a program makes while it is \\\
30 running.
31 URL:=http://strace.sourceforge.net/
32 endef
33
34 define Build/Configure
35 $(call Build/Configure/Default)
36 endef
37
38 define Build/Compile
39 $(MAKE) -C $(PKG_BUILD_DIR) \
40 CC="$(TARGET_CC)"
41 endef
42
43 define Package/strace/install
44 install -m0755 -d $(1)/usr/sbin
45 install -m0755 $(PKG_BUILD_DIR)/strace $(1)/usr/sbin/
46 endef
47
48 $(eval $(call BuildPackage,strace))