[package] add mtd-utils version 20090227, thanks Miguel (#4555)
[packages.git] / utils / mtd-utils / Makefile
1
2 # Copyright (C) 2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=mtd-utils
12 PKG_VERSION:=20090227
13 PKG_RELEASE:=1
14 PKG_INSTALL:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=git://git.infradead.org/mtd-utils.git
18 PKG_SOURCE_PROTO:=git
19 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
20 PKG_SOURCE_VERSION:=a2d010f8fca904fffa3c6e5a5d148cc96a37a08a
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/mtd-utils
25   SECTION:=utils
26   CATEGORY:=Utilities
27   TITLE:=Utilities for flash info/debug
28   URL:=http://www.linux-mtd.infradead.org/
29   DEPENDS:=+zlib +liblzo +libuuid
30 endef
31
32 define Package/mtd-utils/description
33   Utilities for manipulating memory technology devices.
34 endef
35
36 MAKE_FLAGS += \
37         DESTDIR="$(PKG_INSTALL_DIR)" \
38         BUILDDIR="$(PKG_BUILD_DIR)" \
39         WITHOUT_XATTR=1
40
41 define Package/mtd-utils/install
42         $(INSTALL_DIR) $(1)/usr/sbin
43         $(CP) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
44 endef
45
46 $(eval $(call BuildPackage,mtd-utils))