1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-07 16:44:13 +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
define Package/pcmcia-cs
SECTION:=base
DEPENDS:=@PCMCIA_SUPPORT
TITLE:=PCMCIA/Cardbus management utilities
DESCRIPTION:=PCMCIA/Cardbus management utilities
URL:=http://pcmcia-cs.sourceforge.net/
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=@LINUX_2_4&&PCMCIA_SUPPORT
TITLE:=PCMCIA/Cardbus management utilities
URL:=http://pcmcia-cs.sourceforge.net/
endef
define Build/Configure
@ -45,18 +45,22 @@ define Build/Configure
--nopnp \
--notrust \
--nox11 \
--sysv --rcdir="/etc" \
--rcdir="/etc" \
--sysv \
)
endef
define Build/Compile
$(call Build/Compile/Default,CFLAGS="$(TARGET_CFLAGS)" all install)
$(call Build/Compile/Default, \
CFLAGS="$(TARGET_CFLAGS)" \
all install \
)
endef
define Package/pcmcia-cs/install
install -m0755 -d $(1)/etc
install -d -m0755 $(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/cardmgr $(1)/usr/sbin/
endef