You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=libarchive
  9. PKG_VERSION:=3.1.2
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=http://www.libarchive.org/downloads
  13. PKG_MD5SUM:=efad5a503f66329bb9d2f4308b5de98a
  14. PKG_MAINTAINER:=Johannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
  15. PKG_LICENSE:=BSD-2-Clause
  16. PKG_INSTALL:=1
  17. PKG_FIXUP:=autoreconf
  18. PKG_BUILD_DEPENDS:=libxml2 libopenssl zlib
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/libarchive/Default
  21. SECTION:=libs
  22. CATEGORY:=Libraries
  23. URL:=http://www.libarchive.org
  24. endef
  25. define Package/libarchive
  26. $(call Package/libarchive/Default)
  27. DEPENDS:=+libxml2 +libopenssl +zlib
  28. TITLE:=Multi-format archive and compression library
  29. endef
  30. define Package/libarchive/description
  31. Multi-format archive and compression library.
  32. endef
  33. define Build/InstallDev
  34. $(INSTALL_DIR) $(1)
  35. $(CP) $(PKG_INSTALL_DIR)/* $(1)/
  36. endef
  37. define Package/libarchive/install
  38. $(INSTALL_DIR) $(1)/usr/lib
  39. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libarchive.so.* $(1)/usr/lib/
  40. endef
  41. $(eval $(call BuildPackage,libarchive))