packages/utils/strace/Makefile
florian c7e5ce39fe [package] strace: update to 4.7
Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@34224 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-11-17 21:49:45 +00:00

57 lines
1.2 KiB
Makefile

#
# Copyright (C) 2006-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=strace
PKG_VERSION:=4.7
PKG_RELEASE:=1
PKG_MD5SUM:=6054c3880a00c6703f83b57f15e04642
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@SF/$(PKG_NAME)
PKG_LICENSE:=BSD-3c
PKG_LICENSE_FILES:=COPYRIGHT
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/strace
SECTION:=utils
CATEGORY:=Utilities
TITLE:=System call tracer
URL:=http://strace.sourceforge.net/
endef
define Package/strace/description
A useful diagnostic, instructional, and debugging tool. Allows you to track what
system calls a program makes while it is running.
endef
# needed when compiling against Linux 2.4
CONFIGURE_VARS += \
ac_cv_header_linux_netlink_h=yes
ifneq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
TARGET_CPPFLAGS += -I$(LINUX_DIR)/include
endif
MAKE_FLAGS := \
CCOPT="$(TARGET_CFLAGS)"
define Package/strace/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/strace $(1)/usr/bin/
endef
$(eval $(call BuildPackage,strace))