mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-30 23:16:17 +02:00
standardize Makefile
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4843 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
46d9b2065a
commit
f9ac1ade34
@ -11,30 +11,38 @@ include $(TOPDIR)/rules.mk
|
|||||||
PKG_NAME:=linux-atm
|
PKG_NAME:=linux-atm
|
||||||
PKG_VERSION:=2.4.1
|
PKG_VERSION:=2.4.1
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
PKG_MD5SUM:=84fef49cc39ff2605204246666f65864
|
|
||||||
|
|
||||||
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
|
|
||||||
PKG_CAT:=zcat
|
|
||||||
|
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
|
||||||
|
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/l/linux-atm/
|
||||||
|
PKG_MD5SUM:=84fef49cc39ff2605204246666f65864
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
define Package/linux-atm/Default
|
||||||
|
URL:=http://linux-atm.sourceforge.net/
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/linux-atm
|
define Package/linux-atm
|
||||||
|
$(call Package/linux-atm/Default)
|
||||||
SECTION:=libs
|
SECTION:=libs
|
||||||
CATEGORY:=Libraries
|
CATEGORY:=Libraries
|
||||||
TITLE:=Linux ATM Library
|
TITLE:=Linux ATM Library
|
||||||
DESCRIPTION:=Library for accessing the Linux ATM subsystem
|
DESCRIPTION:=\
|
||||||
|
This package contains a library for accessing the Linux ATM subsystem.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/br2684ctl
|
define Package/br2684ctl
|
||||||
|
$(call Package/linux-atm/Default)
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
TITLE:=RFC2684 bridging
|
|
||||||
DEPENDS:=+linux-atm
|
DEPENDS:=+linux-atm
|
||||||
DESCRIPTION:=ATM RFC2684 bridging utility
|
TITLE:=RFC2684 bridging utility
|
||||||
|
DESCRIPTION:=\
|
||||||
|
This package contains an ATM RFC2684 bridging utility.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
@ -44,19 +52,10 @@ define Build/Configure
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
$(call Build/Compile/Default,DESTDIR="$(PKG_INSTALL_DIR)" all install)
|
$(call Build/Compile/Default, \
|
||||||
endef
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
all install \
|
||||||
define Package/linux-atm/install
|
)
|
||||||
install -d -m0755 $(1)/usr/lib
|
|
||||||
cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/br2684ctl/install
|
|
||||||
install -d -m0755 $(1)/etc/hotplug.d/net
|
|
||||||
install -m0644 ./files/br2684.hotplug $(1)/etc/hotplug.d/net/30-br2684
|
|
||||||
install -d -m0755 $(1)/usr/sbin
|
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/InstallDev
|
define Build/InstallDev
|
||||||
@ -73,5 +72,17 @@ define Build/UninstallDev
|
|||||||
$(STAGING_DIR)/usr/lib/libatm.{a,so*}
|
$(STAGING_DIR)/usr/lib/libatm.{a,so*}
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/linux-atm/install
|
||||||
|
install -d -m0755 $(1)/usr/lib
|
||||||
|
cp -f $(PKG_INSTALL_DIR)/usr/lib/libatm.so.1 $(1)/usr/lib
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/br2684ctl/install
|
||||||
|
install -d -m0755 $(1)/usr/sbin
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/br2684ctl $(1)/usr/sbin/
|
||||||
|
install -d -m0755 $(1)/etc/hotplug.d/net
|
||||||
|
install -m0644 ./files/br2684.hotplug $(1)/etc/hotplug.d/net/30-br2684
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,linux-atm))
|
$(eval $(call BuildPackage,linux-atm))
|
||||||
$(eval $(call BuildPackage,br2684ctl))
|
$(eval $(call BuildPackage,br2684ctl))
|
||||||
|
Loading…
Reference in New Issue
Block a user