fcdf71cd76ac29fe9cf0dac87a5b1813a1447488
[openwrt-10.03/.git] / package / pcmcia-cs / 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:=pcmcia-cs
12 PKG_VERSION:=3.2.8
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
18 PKG_MD5SUM:=0d6d65be8896eff081aee996049afaa5
19 PKG_CAT:=zcat
20
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/pcmcia-cs
26 SECTION:=base
27 DEPENDS:=@PCMCIA_SUPPORT
28 TITLE:=PCMCIA/Cardbus management utilities
29 DESCRIPTION:=PCMCIA/Cardbus management utilities
30 URL:=http://pcmcia-cs.sourceforge.net/
31 endef
32
33 define Build/Configure
34         ( cd $(PKG_BUILD_DIR); \
35                 ./Configure \
36                         --noprompt \
37                         --kernel="$(LINUX_DIR)" \
38                         --target="$(PKG_INSTALL_DIR)" \
39                         --arch="$(ARCH)" \
40                         --ucc="$(TARGET_CC)" \
41                         --uflags="$(TARGET_CFLAGS)" \
42                         --srctree \
43                         --cardbus \
44                         --noapm \
45                         --nopnp \
46                         --notrust \
47                         --nox11 \
48                         --sysv --rcdir="/etc" \
49         )
50 endef
51
52 define Build/Compile
53   $(call Build/Compile/Default,CFLAGS="$(TARGET_CFLAGS)" all install)
54 endef
55
56 define Package/pcmcia-cs/install
57         install -m0755 -d $(1)/etc
58         $(CP) $(PKG_INSTALL_DIR)/etc/pcmcia $(1)/etc/
59         install -m0755 -d $(1)/usr/sbin
60         $(CP) $(PKG_INSTALL_DIR)/sbin/cardctl $(1)/usr/sbin/
61         $(CP) $(PKG_INSTALL_DIR)/sbin/cardmgr $(1)/usr/sbin/
62 endef
63
64 $(eval $(call BuildPackage,pcmcia-cs))