mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-31 16:35:44 +00:00
standardize Makefile, change section from base to utils, remove dup description
SVN-Revision: 4830
This commit is contained in:
parent
c1391b0713
commit
660b1b4abf
@ -23,10 +23,10 @@ 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
|
||||||
|
DEPENDS:=@LINUX_2_4&&PCMCIA_SUPPORT
|
||||||
TITLE:=PCMCIA/Cardbus management utilities
|
TITLE:=PCMCIA/Cardbus management utilities
|
||||||
DESCRIPTION:=PCMCIA/Cardbus management utilities
|
|
||||||
URL:=http://pcmcia-cs.sourceforge.net/
|
URL:=http://pcmcia-cs.sourceforge.net/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user