Makefile 880 B

123456789101112131415161718192021222324252627282930
  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:= fprobe-ulog
  5. PKG_VERSION:= 1.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= cdb2e4edc47e8a3d5479eeabfb979ebc
  8. PKG_DESCR:= NetFlow probe
  9. PKG_SECTION:= net
  10. PKG_DEPENDS:= libpcap libpthread
  11. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=fprobe/}
  12. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  13. include ${TOPDIR}/mk/package.mk
  14. $(eval $(call PKG_template,FPROBE_ULOG,fprobe-ulog,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_ARGS+= --with-piddir=/var \
  16. --with-membulk=index8 \
  17. --with-hash=xor8
  18. fprobe-ulog-install:
  19. ${INSTALL_DIR} ${IDIR_FPROBE_ULOG}/usr/sbin
  20. ${INSTALL_BIN} ${WRKINST}/usr/sbin/fprobe-ulog \
  21. ${IDIR_FPROBE_ULOG}/usr/sbin/
  22. include ${TOPDIR}/mk/pkg-bottom.mk