Makefile 883 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:= fprobe
  7. PKG_VERSION:= 1.1
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 65850d0470078269b33eee58cba77ac2
  10. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
  11. MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=fprobe/}
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,FPROBE,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE}))
  14. CONFIGURE_STYLE= gnu
  15. CONFIGURE_ARGS+= --with-piddir=/var \
  16. --with-pcap=${STAGING_DIR}/usr/include \
  17. --with-libpcap=${STAGING_DIR}/usr/lib \
  18. --with-membulk=index8 \
  19. --with-hash=xor8 \
  20. BUILD_STYLE= auto
  21. INSTALL_STYLE= auto
  22. post-install:
  23. ${INSTALL_DIR} ${IDIR_FPROBE}/usr/sbin
  24. ${INSTALL_BIN} ${WRKINST}/usr/sbin/fprobe ${IDIR_FPROBE}/usr/sbin/
  25. include ${TOPDIR}/mk/pkg-bottom.mk