mirror of
https://github.com/openwrt/packages.git
synced 2025-12-28 07:50:04 +04:00
libarchive looks for ext2fs headers during configure, and if it finds them it will expect to find them during compile, or on the rare occasion when they aren't it will fail: libarchive/archive_entry.c:59:55: fatal error: ext2fs/ext2_fs.h: No such file or directory As we just need headers for some type constants, let's re-use headers from tools/e2fsprogs package which are always available. Reported-by: Adam Dov <adov@maxlinear.com> Suggested-by: Paul Eggleton <paul.eggleton@linux.intel.com> References: https://git.yoctoproject.org/poky/commit/?id=f0b9a7cf9f80be1917e45266fa201f464a28c1e5 Signed-off-by: Petr Štetiar <ynezz@true.cz>
139 lines
3.4 KiB
Makefile
139 lines
3.4 KiB
Makefile
#
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libarchive
|
|
PKG_VERSION:=3.5.2
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://www.libarchive.org/downloads
|
|
PKG_HASH:=f0b19ff39c3c9a5898a219497ababbadab99d8178acc980155c7e1271089b5a0
|
|
|
|
PKG_MAINTAINER:=Johannes Morgenroth <morgenroth@ibr.cs.tu-bs.de>
|
|
PKG_LICENSE:=BSD-2-Clause
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:libarchive:libarchive
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/libarchive/Default
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+zlib +liblzma +libbz2 +libexpat
|
|
TITLE:=Multi-format archive and compression library
|
|
URL:=https://www.libarchive.org/
|
|
endef
|
|
|
|
define Package/libarchive
|
|
$(call Package/libarchive/Default)
|
|
DEPENDS += +libopenssl
|
|
endef
|
|
|
|
define Package/libarchive-noopenssl
|
|
$(call Package/libarchive/Default)
|
|
TITLE += (without OpenSSL dependency)
|
|
VARIANT:=noopenssl
|
|
endef
|
|
|
|
define Package/bsdtar/Default
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=Compression
|
|
TITLE:=tar BSD variant
|
|
URL:=https://www.libarchive.org/
|
|
endef
|
|
|
|
define Package/bsdtar
|
|
$(call Package/bsdtar/Default)
|
|
DEPENDS:= +libarchive
|
|
CONFLICTS:=bsdtar-noopenssl
|
|
endef
|
|
|
|
define Package/bsdtar-noopenssl
|
|
$(call Package/bsdtar/Default)
|
|
TITLE += (without OpenSSL dependency)
|
|
DEPENDS:= +libarchive-noopenssl
|
|
VARIANT:=noopenssl
|
|
endef
|
|
|
|
define Package/bsdtar/description
|
|
Reads a variety of formats including tar, pax, zip, xar, lha, ar,
|
|
cab, mtree, rar, warc, 7z and ISO images. Writes tar, pax, zip,
|
|
xar, ar, ISO, mtree and shar archives. Automatically handles
|
|
archives compressed with gzip, bzip2, lzip, xz, lzma or compress.
|
|
endef
|
|
|
|
CMAKE_OPTIONS += \
|
|
-DENABLE_MBEDTLS=OFF \
|
|
-DENABLE_NETTLE=OFF \
|
|
-DENABLE_LIBB2=OFF \
|
|
-DENABLE_LZ4=OFF \
|
|
-DENABLE_LZO=OFF \
|
|
-DENABLE_LZMA=ON \
|
|
\
|
|
-DENABLE_ZSTD=OFF \
|
|
-DENABLE_ZLIB=ON \
|
|
-DENABLE_BZip2=ON \
|
|
-DENABLE_LIBXML2=OFF \
|
|
-DENABLE_EXPAT=ON \
|
|
-DENABLE_PCREPOSIX=OFF \
|
|
-DENABLE_LibGCC=OFF \
|
|
-DENABLE_CNG=OFF \
|
|
\
|
|
-DENABLE_TAR=ON \
|
|
-DENABLE_TAR_SHARED=ON \
|
|
-DENABLE_CPIO=OFF \
|
|
-DENABLE_CAT=OFF \
|
|
-DENABLE_XATTR=OFF \
|
|
-DENABLE_ACL=OFF \
|
|
-DENABLE_ICONV=OFF \
|
|
-DENABLE_TEST=OFF \
|
|
-DENABLE_COVERAGE=OFF \
|
|
-DENABLE_INSTALL=ON
|
|
|
|
ifeq ($(BUILD_VARIANT),noopenssl)
|
|
CMAKE_OPTIONS += -DENABLE_OPENSSL=OFF
|
|
else
|
|
CMAKE_OPTIONS += -DENABLE_OPENSSL=ON
|
|
endif
|
|
|
|
EXTRA_CFLAGS += "-I$(PKG_BUILD_DIR)/extra-includes"
|
|
|
|
define Build/Configure
|
|
$(INSTALL_DIR) $(PKG_BUILD_DIR)/extra-includes/
|
|
$(CP) -R $(STAGING_DIR_HOST)/include/ext2fs $(PKG_BUILD_DIR)/extra-includes/
|
|
$(Build/Configure/Default)
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/libarchive/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/bsdtar/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/bsdtar $(1)/usr/bin
|
|
endef
|
|
|
|
Package/libarchive-noopenssl/install = $(Package/libarchive/install)
|
|
Package/bsdtar-noopenssl/install = $(Package/bsdtar/install)
|
|
|
|
$(eval $(call BuildPackage,libarchive))
|
|
$(eval $(call BuildPackage,libarchive-noopenssl))
|
|
$(eval $(call BuildPackage,bsdtar))
|
|
$(eval $(call BuildPackage,bsdtar-noopenssl))
|