2014-03-01 20:04:15 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# lzip
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-03-01 06:56:37 +01:00
|
|
|
LZIP_VERSION = 1.20
|
2014-07-31 10:46:58 +02:00
|
|
|
LZIP_SITE = http://download.savannah.gnu.org/releases/lzip
|
2017-03-30 15:43:32 +02:00
|
|
|
LZIP_LICENSE = GPL-2.0+
|
2014-03-01 20:04:15 +01:00
|
|
|
LZIP_LICENSE_FILES = COPYING
|
|
|
|
|
|
|
|
define LZIP_CONFIGURE_CMDS
|
2016-10-28 15:18:21 +02:00
|
|
|
(cd $(@D); $(TARGET_MAKE_ENV) ./configure --prefix=/usr \
|
2014-03-01 20:04:15 +01:00
|
|
|
$(TARGET_CONFIGURE_OPTS) )
|
|
|
|
endef
|
|
|
|
|
|
|
|
define HOST_LZIP_CONFIGURE_CMDS
|
2017-07-05 13:14:42 +02:00
|
|
|
(cd $(@D); $(HOST_MAKE_ENV) ./configure --prefix=$(HOST_DIR) \
|
package/pkg-generic: handle host-lzip as an extract dependency
This moves the host-lzip dependency handling from
DEPENDENCY_HOST_PREREQ to an extract dependency.
To achieve that, check-host-lzip.mk fills in the
BR2_LZIP_HOST_DEPENDENCY with host-lzip if building a host-lzip is
needed. The name BR2_LZIP_HOST_DEPENDENCY has been chosen because it
matches the name BR2_CMAKE_HOST_DEPENDENCY already used in
check-host-cmake.mk.
The BR2_LZIP_HOST_DEPENDENCY is added to all packages, except:
- host-lzip, because we would otherwise depend on ourself.
- host-tar, because lzip itself is delivered as a tarball, so we need
to have host-lzip depend on host-tar, and not host-tar depend on
host-lzip
- host-skeleton, because we need to have host-lzip depend on
host-skeleton, and not the opposite.
We also mutually exclude host-lzip and host-xz from dependending on
each other, to avoid a circular dependency.
In addition, we modify lzip.mk to explicitly build host-lzip without
ccache. We generally took the approach of building host-ccache *after*
all the extractors have been built.
[Peter: fix s/host-tar/host-lzip/ typo, fix s/xz/lzip/ typo]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2018-03-24 15:20:05 +01:00
|
|
|
$(HOST_CONFIGURE_OPTS) CC="$(HOSTCC_NOCCACHE)" CXX="$(HOSTCXX_NOCCACHE)")
|
2014-03-01 20:04:15 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define LZIP_BUILD_CMDS
|
2016-10-17 18:06:37 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
2014-03-01 20:04:15 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define HOST_LZIP_BUILD_CMDS
|
2016-10-28 15:18:20 +02:00
|
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
|
2014-03-01 20:04:15 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define LZIP_INSTALL_TARGET_CMDS
|
2016-10-17 18:06:37 +02:00
|
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
2014-03-01 20:04:15 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define HOST_LZIP_INSTALL_CMDS
|
2017-07-05 13:14:42 +02:00
|
|
|
$(HOST_MAKE_ENV) $(MAKE) -C $(@D) install
|
2014-03-01 20:04:15 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
# It's not autotools-based
|
|
|
|
$(eval $(generic-package))
|
|
|
|
$(eval $(host-generic-package))
|