Makefile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #
  2. # Copyright (C) 2008-2013 OpenWrt.org
  3. # Copyright (C) 2017 Yousong Zhou <[email protected]>
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=libunwind
  10. PKG_VERSION:=1.2.1
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=@SAVANNAH/$(PKG_NAME)
  14. PKG_HASH:=3f3ecb90e28cbe53fba7a4a27ccce7aad188d3210bb1964a923a731a27a75acb
  15. PKG_FIXUP:=autoreconf
  16. PKG_INSTALL:=1
  17. PKG_LICENSE:=X11
  18. PKG_LICENSE_FILES:=LICENSE
  19. PKG_MAINTAINER:=Yousong Zhou <[email protected]>
  20. include $(INCLUDE_DIR)/package.mk
  21. define Package/libunwind
  22. SECTION:=libs
  23. CATEGORY:=Libraries
  24. TITLE:=The libunwind project
  25. URL:=http://www.nongnu.org/libunwind/
  26. DEPENDS:=@(mips||mipsel||powerpc||i386||x86_64)
  27. endef
  28. define Package/libunwind/description
  29. Libunwind defines a portable and efficient C programming interface (API) to determine the call-chain of a program.
  30. endef
  31. CONFIGURE_ARGS += \
  32. --disable-documentation \
  33. --enable-minidebuginfo=no \
  34. define Package/libunwind/install
  35. $(INSTALL_DIR) $(1)/usr/lib
  36. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so* $(1)/usr/lib/
  37. endef
  38. define Build/InstallDev
  39. $(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib/pkgconfig
  40. $(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include
  41. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libunwin*.so* $(1)/usr/lib
  42. $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
  43. endef
  44. $(eval $(call BuildPackage,libunwind))