Makefile 868 B

123456789101112131415161718192021222324252627282930
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= ltrace
  5. PKG_VERSION:= 0.7.4
  6. # git from 24.05.2014
  7. PKG_RELEASE:= 1
  8. PKG_MD5SUM:= 266580175adba8cbb02b6b792d9f05f5
  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:= http://openadk.org/distfiles/
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,LTRACE,ltrace,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. AUTOTOOL_STYLE:= autoreconf
  18. CONFIGURE_ARGS+= --disable-werror
  19. ltrace-install:
  20. $(INSTALL_DIR) $(IDIR_LTRACE)/usr/sbin
  21. $(INSTALL_BIN) $(WRKINST)/usr/bin/ltrace \
  22. $(IDIR_LTRACE)/usr/sbin
  23. include ${TOPDIR}/mk/pkg-bottom.mk