1
0

Makefile 957 B

1234567891011121314151617181920212223242526272829
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${ADK_TOPDIR}/rules.mk
  4. PKG_NAME:= bridge-utils
  5. PKG_VERSION:= 1.6
  6. PKG_RELEASE:= 1
  7. PKG_HASH:= cc67efb5d5fb8928a6569b3fade2b4042ec17da04678dab127d96b46489e26c8
  8. PKG_DESCR:= ethernet bridging tools
  9. PKG_SECTION:= net/route
  10. PKG_KDEPENDS:= bridge
  11. PKG_URL:= http://www.linuxfoundation.org/en/Net:Bridge
  12. PKG_SITES:= http://www.kernel.org/pub/linux/utils/net/bridge-utils/
  13. PKG_BB:= 1
  14. include ${ADK_TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,BRIDGE_UTILS,bridge-utils,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. AUTOTOOL_STYLE:= autoconf
  17. CONFIGURE_ARGS+= --with-linux-headers=${LINUX_DIR}
  18. bridge-utils-install:
  19. ${INSTALL_DIR} ${IDIR_BRIDGE_UTILS}/usr/sbin
  20. ${INSTALL_BIN} ${WRKINST}/usr/sbin/brctl \
  21. ${IDIR_BRIDGE_UTILS}/usr/sbin
  22. include ${ADK_TOPDIR}/mk/pkg-bottom.mk