1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-20 13:01:11 +03:00

standardize Makefile, change section from base to utils, remove dup description

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4830 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2006-09-23 14:00:36 +00:00
parent 829866eaed
commit 08ed1d793c

View File

@ -23,11 +23,11 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
define Package/pcmcia-cs define Package/pcmcia-cs
SECTION:=base SECTION:=utils
DEPENDS:=@PCMCIA_SUPPORT CATEGORY:=Utilities
TITLE:=PCMCIA/Cardbus management utilities DEPENDS:=@LINUX_2_4&&PCMCIA_SUPPORT
DESCRIPTION:=PCMCIA/Cardbus management utilities TITLE:=PCMCIA/Cardbus management utilities
URL:=http://pcmcia-cs.sourceforge.net/ URL:=http://pcmcia-cs.sourceforge.net/
endef endef
define Build/Configure define Build/Configure
@ -45,18 +45,22 @@ define Build/Configure
--nopnp \ --nopnp \
--notrust \ --notrust \
--nox11 \ --nox11 \
--sysv --rcdir="/etc" \ --rcdir="/etc" \
--sysv \
) )
endef endef
define Build/Compile define Build/Compile
$(call Build/Compile/Default,CFLAGS="$(TARGET_CFLAGS)" all install) $(call Build/Compile/Default, \
CFLAGS="$(TARGET_CFLAGS)" \
all install \
)
endef endef
define Package/pcmcia-cs/install define Package/pcmcia-cs/install
install -m0755 -d $(1)/etc install -d -m0755 $(1)/etc
$(CP) $(PKG_INSTALL_DIR)/etc/pcmcia $(1)/etc/ $(CP) $(PKG_INSTALL_DIR)/etc/pcmcia $(1)/etc/
install -m0755 -d $(1)/usr/sbin install -d -m0755 $(1)/usr/sbin
$(CP) $(PKG_INSTALL_DIR)/sbin/cardctl $(1)/usr/sbin/ $(CP) $(PKG_INSTALL_DIR)/sbin/cardctl $(1)/usr/sbin/
$(CP) $(PKG_INSTALL_DIR)/sbin/cardmgr $(1)/usr/sbin/ $(CP) $(PKG_INSTALL_DIR)/sbin/cardmgr $(1)/usr/sbin/
endef endef