[package] fix crtmpserver dependencies
[packages.git] / multimedia / motion / Makefile
1 #
2 # Copyright (C) 2008-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=motion
11 PKG_VERSION:=20110826-051001
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://www.lavrsen.dk/sources/motion-daily \
16                 @SF/motion
17 PKG_MD5SUM:=e703fce57ae2215cb05f25e3027f5818
18
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/motion
24   SECTION:=multimedia
25   CATEGORY:=Multimedia
26   DEPENDS:=+libjpeg +libpthread
27   TITLE:=webcam motion sensing and logging
28   URL:=http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome
29 endef
30
31 define Package/motion/conffiles
32 /etc/motion.conf
33 endef
34
35 CONFIGURE_ARGS+= \
36         --without-optimizecpu \
37         --without-ffmpeg \
38         --without-jpeg-mmx \
39         --without-sdl \
40         --without-mysql \
41         --without-pgsql \
42         --without-sqlite3 \
43
44 define Package/motion/install
45         $(INSTALL_DIR) $(1)/etc
46         $(CP) $(PKG_INSTALL_DIR)/etc/motion-dist.conf $(1)/etc/motion.conf
47         $(INSTALL_DIR) $(1)/usr/bin
48         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/motion $(1)/usr/bin/
49
50 endef
51
52 $(eval $(call BuildPackage,motion))