Makefile 998 B

12345678910111213141516171819202122232425262728293031323334
  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= gatling
  5. PKG_VERSION= 0.10
  6. PKG_RELEASE= 1
  7. PKG_MD5SUM= 04e8434156d91657c77a8a038c5b27cf
  8. PKG_DESCR:= small non-forking webserver
  9. PKG_SECTION:= net
  10. PKG_DEPENDS:= libiconv
  11. PKG_URL:= http://www.fefe.de/gatling
  12. PKG_SITES= http://dl.fefe.de/
  13. DISTFILES= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,GATLING,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. BUILD_STYLE= auto
  17. MAKE_FILE= GNUmakefile
  18. ALL_TARGET= gatling
  19. TCPPFLAGS+= -I${STAGING_DIR}/usr/include/owfat
  20. XAKE_FLAGS+= CC='${TARGET_CC}' \
  21. CFLAGS='${TCPPFLAGS} ${TCFLAGS}' \
  22. ZLIB=0 DIET= prefix='${WRKINST}/usr'
  23. do-install:
  24. ${INSTALL_DIR} ${IDIR_GATLING}/usr/sbin
  25. ${INSTALL_BIN} ${WRKBUILD}/gatling ${IDIR_GATLING}/usr/sbin/
  26. include ${TOPDIR}/mk/pkg-bottom.mk