mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 22:21:51 +02: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:
parent
829866eaed
commit
08ed1d793c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user