packages/utils/strace/Makefile
florian 98365f351d Upgrade strace to 4.5.14 (latest), differentiate sigcontext when we have 2.4 or 2.6 kernel (#959), should also fix #668
git-svn-id: svn://svn.openwrt.org/openwrt/packages@5531 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-11-14 14:45:20 +00:00

48 lines
1022 B
Makefile

#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=strace
PKG_VERSION:=4.5.14
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@SF/strace
PKG_MD5SUM:=09bcd5d00ece28f8154dec11cadfce3c
PKG_CAT:=bzcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk
define Package/strace
SECTION:=utils
CATEGORY:=Utilities
TITLE:=System call tracer
DESCRIPTION:=\
A useful diagnostic, instructional, and debugging tool. \\\
Allows you to track what system calls a program makes while it is \\\
running.
URL:=http://strace.sourceforge.net/
endef
# uses GNU configure
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
CC="$(TARGET_CC)"
endef
define Package/strace/install
install -d -m0755 $(1)/usr/sbin
install -m0755 $(PKG_BUILD_DIR)/strace $(1)/usr/sbin/
endef
$(eval $(call BuildPackage,strace))