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.

59 lines
1.3 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. include $(INCLUDE_DIR)/package.mk
  19. define Package/libarchive/Default
  20. SECTION:=libs
  21. CATEGORY:=Libraries
  22. URL:=http://www.libarchive.org
  23. endef
  24. define Package/libarchive
  25. $(call Package/libarchive/Default)
  26. DEPENDS:=+libopenssl +zlib
  27. TITLE:=Multi-format archive and compression library
  28. endef
  29. define Package/libarchive/description
  30. Multi-format archive and compression library.
  31. endef
  32. CONFIGURE_ARGS += \
  33. --disable-acl \
  34. --disable-xattr \
  35. --without-bz2lib \
  36. --without-lzo2 \
  37. --without-nettle \
  38. --without-xml2
  39. define Build/InstallDev
  40. $(INSTALL_DIR) $(1)
  41. $(CP) $(PKG_INSTALL_DIR)/* $(1)/
  42. endef
  43. define Package/libarchive/install
  44. $(INSTALL_DIR) $(1)/usr/lib
  45. $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so.* $(1)/usr/lib/
  46. endef
  47. $(eval $(call BuildPackage,libarchive))