Merge pull request #140 from roger-/motion
[feed/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 PKG_MAINTAINER:=Roger D <rogerdammit@gmail.com>
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.lavrsen.dk/sources/motion-daily \
17 @SF/motion
18 PKG_MD5SUM:=e703fce57ae2215cb05f25e3027f5818
19
20 PKG_INSTALL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/motion
25 SECTION:=multimedia
26 CATEGORY:=Multimedia
27 DEPENDS:=+libjpeg +libpthread
28 TITLE:=webcam motion sensing and logging
29 URL:=http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome
30 endef
31
32 define Package/motion/conffiles
33 /etc/motion.conf
34 endef
35
36 CONFIGURE_ARGS+= \
37 --without-optimizecpu \
38 --without-ffmpeg \
39 --without-jpeg-mmx \
40 --without-sdl \
41 --without-mysql \
42 --without-pgsql \
43 --without-sqlite3 \
44
45 define Package/motion/install
46 $(INSTALL_DIR) $(1)/etc
47 $(CP) $(PKG_INSTALL_DIR)/etc/motion-dist.conf $(1)/etc/motion.conf
48 $(INSTALL_DIR) $(1)/usr/bin
49 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/motion $(1)/usr/bin/
50
51 endef
52
53 $(eval $(call BuildPackage,motion))