add needed stuff for raspberry pi for kodi example appliance
[openadk.git] / package / ltrace / Makefile
blobb3eb248c6dbe87fc2795e933a96878cd931b8855
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 include $(ADK_TOPDIR)/rules.mk
6 PKG_NAME:= ltrace
7 PKG_VERSION:= c18a46eff706e956c4dc755144d752dc163a1145
8 PKG_RELEASE:= 1
9 PKG_DESCR:= intercepts and records dynamic library calls
10 PKG_SECTION:= app/debug
11 PKG_DEPENDS:= libelf
12 PKG_BUILDDEP:= libelf
13 PKG_URL:= http://ltrace.org/
14 PKG_SITES:= git://git.debian.org/git/collab-maint/ltrace.git
16 include $(ADK_TOPDIR)/mk/package.mk
18 $(eval $(call PKG_template,LTRACE,ltrace,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
20 AUTOTOOL_STYLE:= autoreconf
21 CONFIGURE_ARGS+= --disable-werror
23 ltrace-install:
24 $(INSTALL_DIR) $(IDIR_LTRACE)/usr/sbin
25 $(INSTALL_BIN) $(WRKINST)/usr/bin/ltrace \
26 $(IDIR_LTRACE)/usr/sbin
28 include ${ADK_TOPDIR}/mk/pkg-bottom.mk