mtd-utils: mark as nonshared
[openwrt/openwrt.git] / package / utils / mtd-utils / Makefile
1 #
2 # Copyright (C) 2009-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=mtd-utils
11 PKG_VERSION:=1.5.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE_URL:=git://git.infradead.org/mtd-utils.git
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_VERSION:=aea36417067dade75192bafa03af70b6eb2677b1
17 PKG_MIRROR_HASH:=e11b342b85a36b2e438a8412ec52f87621d3046aec1a93039f8c72de9990b2a7
18
19 PKG_INSTALL:=1
20
21 PKG_FLAGS:=nonshared
22
23 PKG_BUILD_DEPENDS:=util-linux liblzo zlib
24
25 PKG_LICENSE:=GPLv2
26 PKG_LICENSE_FILES:=
27
28 PKG_MAINTAINER:=John Crispin <john@phrozen.org>
29
30 include $(INCLUDE_DIR)/package.mk
31
32 define Package/mtd-utils/Default
33 SECTION:=utils
34 CATEGORY:=Utilities
35 URL:=http://www.linux-mtd.infradead.org/
36 DEPENDS:=@NAND_SUPPORT
37 endef
38
39 define Package/ubi-utils
40 $(call Package/mtd-utils/Default)
41 TITLE:=Utilities for ubi info/debug
42 endef
43
44 define Package/ubi-utils/description
45 Utilities for manipulating memory technology devices.
46 endef
47
48 define Package/nand-utils
49 $(call Package/mtd-utils/Default)
50 TITLE:=Utilities for nand flash read/write/test
51 endef
52
53 define Package/nand-utils/description
54 Utilities for NAND devices.
55 endef
56
57 MAKE_FLAGS += \
58 DESTDIR="$(PKG_INSTALL_DIR)" \
59 BUILDDIR="$(PKG_BUILD_DIR)" \
60 LDLIBS+="$(LIBGCC_S)" \
61 WITHOUT_XATTR=1 \
62 WITHOUT_LZO=1
63
64 define Package/ubi-utils/install
65 $(INSTALL_DIR) $(1)/usr/sbin
66 $(INSTALL_BIN) \
67 $(PKG_INSTALL_DIR)/usr/sbin/{ubiattach,ubicrc32,ubiblock,ubidetach,ubiformat,ubimkvol} $(1)/usr/sbin/
68 $(INSTALL_BIN) \
69 $(PKG_INSTALL_DIR)/usr/sbin/{ubinfo,ubinize,ubirename,ubirmvol,ubirsvol,ubiupdatevol} $(1)/usr/sbin/
70 endef
71
72 define Package/nand-utils/install
73 $(INSTALL_DIR) $(1)/usr/sbin
74 $(INSTALL_BIN) \
75 $(PKG_INSTALL_DIR)/usr/sbin/{nanddump,nandwrite,nandtest,mtdinfo} $(1)/usr/sbin/
76 endef
77
78 $(eval $(call BuildPackage,ubi-utils))
79 $(eval $(call BuildPackage,nand-utils))