Merge pull request #250 from psycho-nico/my-updates
libarchive: cleanup & fixes
This commit is contained in:
commit
288232110a
1 changed files with 11 additions and 12 deletions
|
@ -22,33 +22,32 @@ PKG_FIXUP:=autoreconf
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
define Package/libarchive/Default
|
define Package/libarchive
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
URL:=http://www.libarchive.org
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libarchive
|
|
||||||
$(call Package/libarchive/Default)
|
|
||||||
DEPENDS:=+libopenssl +zlib
|
DEPENDS:=+libopenssl +zlib
|
||||||
TITLE:=Multi-format archive and compression library
|
TITLE:=Multi-format archive and compression library
|
||||||
endef
|
URL:=http://www.libarchive.org/
|
||||||
|
|
||||||
define Package/libarchive/description
|
|
||||||
Multi-format archive and compression library.
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_ARGS += \
|
CONFIGURE_ARGS += \
|
||||||
|
--disable-bsdcpio \
|
||||||
|
--disable-bsdtar \
|
||||||
--disable-acl \
|
--disable-acl \
|
||||||
--disable-xattr \
|
--disable-xattr \
|
||||||
--without-bz2lib \
|
--without-bz2lib \
|
||||||
|
--without-lzma \
|
||||||
|
--without-lzmadec \
|
||||||
--without-lzo2 \
|
--without-lzo2 \
|
||||||
--without-nettle \
|
--without-nettle \
|
||||||
|
--without-expat \
|
||||||
--without-xml2
|
--without-xml2
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/libarchive/install
|
define Package/libarchive/install
|
||||||
|
|
Loading…
Reference in a new issue