valgrind: update to 3.10.1 and fix kernel >= 4.0
[openwrt/openwrt.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 define Package/strace
31 SECTION:=utils
32 CATEGORY:=Utilities
33 TITLE:=System call tracer
34 URL:=http://strace.sourceforge.net/
35 endef
36
37 define Package/strace/description
38 A useful diagnostic, instructional, and debugging tool. Allows you to track what
39 system calls a program makes while it is running.
40 endef
41
42 MAKE_FLAGS := \
43 CCOPT="$(TARGET_CFLAGS)"
44
45 define Package/strace/install
46 $(INSTALL_DIR) $(1)/usr/bin
47 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/strace $(1)/usr/bin/
48 endef
49
50 $(eval $(call BuildPackage,strace))