parent
e9d31c35ec
commit
01287654f2
@ -0,0 +1,36 @@ |
|||||||
|
#
|
||||||
|
# Copyright (C) 2009 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:=squashfs4
|
||||||
|
PKG_VERSION:=4.0
|
||||||
|
|
||||||
|
PKG_SOURCE:=squashfs$(PKG_VERSION).tar.gz
|
||||||
|
PKG_SOURCE_URL:=@SF/squashfs
|
||||||
|
PKG_MD5SUM:=a3c23391da4ebab0ac4a75021ddabf96
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/squashfs$(PKG_VERSION)
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/host-build.mk |
||||||
|
|
||||||
|
define Host/Compile |
||||||
|
$(MAKE) -C $(HOST_BUILD_DIR)/squashfs-tools \
|
||||||
|
mksquashfs unsquashfs
|
||||||
|
endef |
||||||
|
|
||||||
|
define Host/Install |
||||||
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/squashfs-tools/mksquashfs $(STAGING_DIR_HOST)/bin/mksquashfs4
|
||||||
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/squashfs-tools/unsquashfs $(STAGING_DIR_HOST)/bin/unsquashfs4
|
||||||
|
endef |
||||||
|
|
||||||
|
define Host/Clean |
||||||
|
rm -f $(STAGING_DIR_HOST)/bin/mksquashfs4
|
||||||
|
rm -f $(STAGING_DIR_HOST)/bin/unsquashfs4
|
||||||
|
endef |
||||||
|
|
||||||
|
$(eval $(call HostBuild)) |
Loading…
Reference in new issue