florian eaeb424901 [package] pcmciautils: bump to 018
git-svn-id: svn://svn.openwrt.org/openwrt/packages@27249 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-06-21 19:20:45 +00:00

49 lines
1.3 KiB
Makefile

#
# Copyright (C) 2008-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=pcmciautils
PKG_VERSION:=018
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@KERNEL/linux/utils/kernel/pcmcia
PKG_MD5SUM:=5d85669b3440baa4532363da6caaf1b4
include $(INCLUDE_DIR)/package.mk
define Package/pcmciautils
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=+libsysfs @!LINUX_2_4 @PCMCIA_SUPPORT
TITLE:=PCMCIA Utilities
URL:=http://www.kernel.org/pub/linux/utils/kernel/pcmcia/pcmcia.html
endef
define Build/Compile
$(call Build/Compile/Default, \
LD="$(TARGET_CC)" UDEV=false \
CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) \
-DPCMCIAUTILS_VERSION=\\\"$(PKG_VERSION)\\\"" \
prefix=/usr all \
)
endef
define Package/pcmciautils/install
$(INSTALL_DIR) $(1)/usr/sbin/
$(CP) $(PKG_BUILD_DIR)/pccardctl $(1)/usr/sbin/
$(CP) $(PKG_BUILD_DIR)/pcmcia-check-broken-cis $(1)/usr/sbin/
$(CP) $(PKG_BUILD_DIR)/pcmcia-socket-startup $(1)/usr/sbin/
rm -f $(1)/usr/sbin/lspcmcia
ln -s pccardctl $(1)/usr/sbin/lspcmcia
$(INSTALL_DIR) $(1)/etc/pcmcia/
$(CP) $(PKG_BUILD_DIR)/config/config.opts $(1)/etc/pcmcia/
$(CP) files/* $(1)/
endef
$(eval $(call BuildPackage,pcmciautils))