Makefile 1022 B

1234567891011121314151617181920212223242526272829303132
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include ${TOPDIR}/rules.mk
  6. PKG_NAME:= netperf
  7. PKG_VERSION:= 2.4.3
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 391a0d98954c72a6ad7f08b8a115e1ce
  10. PKG_DESCR:= Program and service to do network performance measurement.
  11. PKG_SECTION:= net
  12. PKG_URL:= http://www.netperf.org/netperf/
  13. PKG_SITES:= ftp://ftp.netperf.org/netperf/archive/ \
  14. ftp://ftp.cup.hp.com/dist/networking/benchmarks/netperf/
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,NETPERF,${PKG_NAME},${PKG_VERSION}${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_ENV+= ac_cv_func_setpgrp_void=no
  18. CONFIGURE_STYLE:= gnu
  19. BUILD_STYLE:= auto
  20. INSTALL_STYLE:= auto
  21. post-install:
  22. ${INSTALL_DIR} ${IDIR_NETPERF}/usr/bin
  23. ${INSTALL_BIN} ${WRKINST}/usr/bin/netperf ${IDIR_NETPERF}/usr/bin/
  24. ${INSTALL_BIN} ${WRKINST}/usr/bin/netserver ${IDIR_NETPERF}/usr/bin/
  25. include ${TOPDIR}/mk/pkg-bottom.mk