DESCRIPTION:= is obselete
[packages.git] / utils / devio / Makefile
1
2 # Copyright (C) 2006 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:=devio
12 PKG_VERSION:=1.2
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/devio
17 PKG_MD5SUM:=5d332c2bffc0791367bcf3368ba1a0d1
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/devio
24   SECTION:=utils
25   CATEGORY:=Utilities
26   TITLE:=Correctly write to and read from mtd character (and other block) devices
27   URL:=http://sourceforge.net/projects/devio/
28 endef
29
30 define Package/devio/description
31         A command line program to correctly read (or write) a region of a block device.
32         Primary use is for extracting formatted data from MTD partitions.
33 endef
34
35 define Build/Configure
36         (cd $(PKG_BUILD_DIR) ; \
37                 ./configure \
38         );
39 endef
40
41 define Build/Compile
42         $(call Build/Compile/Default, \
43                 CFLAGS="$(EXTRA_CFLAGS)" \
44                 LDFLAGS="$(EXTRA_LDFLAGS)" \
45         )
46 endef
47
48 define Package/devio/install
49         $(INSTALL_DIR) $(1)/usr/sbin
50         $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/devio $(1)/usr/sbin
51 endef
52
53 $(eval $(call BuildPackage,devio))