1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-28 23:05:28 +03:00
openwrt-xburst/tools/e2fsprogs/Makefile
nbd 97a21abd4f tools/e2fsprogs: disable building elf shared libraries, it is unnecessary and breaks on mac os x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32161 3c298f89-4303-0410-b956-a3cf2f4a3e73
2012-06-10 12:24:59 +00:00

45 lines
1.0 KiB
Makefile

#
# Copyright (C) 2010-2012 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:=e2fsprogs
PKG_VERSION:=1.42.3
PKG_MD5SUM:=73431146f58d40fe1375aba2060f0da8
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/e2fsprogs
include $(INCLUDE_DIR)/host-build.mk
HOST_CFLAGS += $(FPIC)
HOST_CONFIGURE_ARGS += \
--disable-shared \
--disable-elf-shlibs \
--enable-static \
--enable-dynamic-e2fsck \
--disable-tls \
--disable-nls
define Host/Install
$(Host/Install/Default)
$(MAKE) -C $(HOST_BUILD_DIR)/lib/uuid install
mkdir -p $(STAGING_DIR_HOST)/include/e2fsprogs
$(CP) $(STAGING_DIR_HOST)/include/uuid $(STAGING_DIR_HOST)/include/e2fsprogs/
rm -rf $(STAGING_DIR_HOST)/include/uuid
$(INSTALL_DATA) $(HOST_BUILD_DIR)/lib/uuid/libuuid.a $(STAGING_DIR_HOST)/lib/
endef
define Host/Clean
rm -f $(STAGING_DIR_HOST)/bin/e2fsck
rm -f $(STAGING_DIR_HOST)/bin/tune2fs
endef
$(eval $(call HostBuild))