Makefile 1008 B

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