[packages] flashrom: update source url, use PKG_INSTALL & MAKE_FLAGS, refresh patches
[openwrt/svn-archive/archive.git] / utils / pcmciautils / Makefile
1 #
2 # Copyright (C) 2008-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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=pcmciautils
11 PKG_VERSION:=015
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@KERNEL/linux/utils/kernel/pcmcia
16 PKG_MD5SUM:=9e12435c8b6cf7bf59894e90e480b4aa
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/pcmciautils
21 SECTION:=utils
22 CATEGORY:=Utilities
23 DEPENDS:=+sysfsutils @!LINUX_2_4 @PCMCIA_SUPPORT
24 TITLE:=PCMCIA Utilities
25 URL:=http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html
26 endef
27
28 define Build/Compile
29 $(call Build/Compile/Default, \
30 LD="$(TARGET_CC)" UDEV=false \
31 CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) \
32 -DPCMCIAUTILS_VERSION=\\\"$(PKG_VERSION)\\\"" \
33 prefix=/usr all \
34 )
35 endef
36
37 define Package/pcmciautils/install
38 $(INSTALL_DIR) $(1)/usr/sbin/
39 $(CP) $(PKG_BUILD_DIR)/pccardctl $(1)/usr/sbin/
40 $(CP) $(PKG_BUILD_DIR)/pcmcia-check-broken-cis $(1)/usr/sbin/
41 $(CP) $(PKG_BUILD_DIR)/pcmcia-socket-startup $(1)/usr/sbin/
42 rm -f $(1)/usr/sbin/lspcmcia
43 ln -s pccardctl $(1)/usr/sbin/lspcmcia
44 $(INSTALL_DIR) $(1)/etc/pcmcia/
45 $(CP) $(PKG_BUILD_DIR)/config/config.opts $(1)/etc/pcmcia/
46 $(CP) files/* $(1)/
47 endef
48 $(eval $(call BuildPackage,pcmciautils))