Makefile 1001 B

1234567891011121314151617181920212223242526272829303132333435
  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:= motion
  7. PKG_VERSION:= 3.2.11
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 3a26c00f3250eacf6fa93c7a7e0249d9
  10. PKG_DESCR:= Webcam motion sensing and logging
  11. PKG_SECTION:= multimedia
  12. PKG_DEPENDS:= libjpeg libpthread
  13. PKG_URL:= http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome
  14. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=motion/}
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,MOTION,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_STYLE:= gnu
  18. CONFIGURE_ARGS+= --without-ffmpeg \
  19. --without-jpeg-mmx \
  20. --without-optimizecpu \
  21. --without-mysql \
  22. --without-pgsql
  23. BUILD_STYLE:= auto
  24. INSTALL_STYLE:= auto
  25. post-install:
  26. ${INSTALL_DIR} ${IDIR_MOTION}/usr/bin
  27. ${INSTALL_BIN} ${WRKINST}/usr/bin/motion ${IDIR_MOTION}/usr/bin/
  28. include ${TOPDIR}/mk/pkg-bottom.mk