6e93e233e144a495a57f9ff76ee3b53db7dfb5d8
[packages.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.14
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=@SF/strace
17 PKG_MD5SUM:=09bcd5d00ece28f8154dec11cadfce3c
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/strace
24   SECTION:=utils
25   CATEGORY:=Utilities
26   TITLE:=System call tracer
27   URL:=http://strace.sourceforge.net/
28 endef
29
30 define Package/strace/description
31         A useful diagnostic, instructional, and debugging tool. 
32         Allows you to track what system calls a program makes while it is 
33         running.
34 endef
35
36 # uses GNU configure
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_DIR) $(1)/usr/sbin
45         $(INSTALL_BIN) $(PKG_BUILD_DIR)/strace $(1)/usr/sbin/
46 endef
47
48 $(eval $(call BuildPackage,strace))