blob: e7942f258944f24ae81ceeccb400dbb634037d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
include $(TOPDIR)/rules.mk
PKG_NAME:= ltrace
PKG_VERSION:= 0.7.4
# git from 24.05.2014
PKG_RELEASE:= 1
PKG_MD5SUM:= 266580175adba8cbb02b6b792d9f05f5
PKG_DESCR:= intercepts and records dynamic library calls
PKG_SECTION:= app/debug
PKG_DEPENDS:= libelf
PKG_BUILDDEP:= autotool libelf
PKG_URL:= http://ltrace.org/
PKG_SITES:= http://openadk.org/distfiles/
include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,LTRACE,ltrace,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
AUTOTOOL_STYLE:= autoreconf
CONFIGURE_ARGS+= --disable-werror
ltrace-install:
$(INSTALL_DIR) $(IDIR_LTRACE)/usr/sbin
$(INSTALL_BIN) $(WRKINST)/usr/bin/ltrace \
$(IDIR_LTRACE)/usr/sbin
include ${TOPDIR}/mk/pkg-bottom.mk
|