Makefile 765 B

123456789101112131415161718192021222324
  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 ${TOPDIR}/rules.mk
  4. PKG_NAME:= stress
  5. PKG_VERSION:= 1.0.0
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= d693ff044ac7d34f8aaea202cd96f679
  8. PKG_DESCR:= a simple tool that imposes certain types of compute stress
  9. PKG_SECTION:= utils
  10. PKG_SITES:= http://weather.ou.edu/~apw/projects/stress/
  11. include ${TOPDIR}/mk/package.mk
  12. $(eval $(call PKG_template,STRESS,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  13. CONFIGURE_ARGS+= --disable-static
  14. post-install:
  15. ${INSTALL_DIR} ${IDIR_STRESS}/usr/bin/
  16. ${INSTALL_BIN} ${WRKINST}/usr/bin/stress ${IDIR_STRESS}/usr/bin/
  17. include ${TOPDIR}/mk/pkg-bottom.mk