Makefile 948 B

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