12345678910111213141516171819202122232425262728293031323334353637 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${TOPDIR}/rules.mk
- PKG_NAME:= motion
- # actually a svn version from 18.09.2011 checkout
- PKG_VERSION:= 4.0
- PKG_RELEASE:= 1
- PKG_MD5SUM:= 6b8730c875e0f550c1abdb647027d8e1
- PKG_DESCR:= Webcam motion sensing and logging
- PKG_SECTION:= multimedia
- PKG_DEPENDS:= libjpeg libpthread libsdl
- PKG_BUILDDEP:= jpeg sdl
- PKG_URL:= http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome
- PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=motion/}
- PKG_ARCH_DEPENDS:= !m68k
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,MOTION,motion,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- CONFIGURE_ARGS+= --without-ffmpeg \
- --without-jpeg-mmx \
- --without-optimizecpu \
- --without-mysql \
- --without-sqlite \
- --without-pgsql \
- --with-v4l
- motion-install:
- ${INSTALL_DIR} ${IDIR_MOTION}/etc ${IDIR_MOTION}/usr/bin
- $(INSTALL_DATA) ./files/motion.conf ${IDIR_MOTION}/etc
- ${INSTALL_BIN} ${WRKINST}/usr/bin/motion ${IDIR_MOTION}/usr/bin
- include ${TOPDIR}/mk/pkg-bottom.mk
|