Port motion to -ng
[openwrt/svn-archive/archive.git] / multimedia / motion / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=motion
12 PKG_VERSION:=3.2.6
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=71e6bd13fcca70372e9b7c7806d62b30
15
16 PKG_SOURCE_URL:=@SF/motion
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/motion
26 SECTION:=multimedia
27 CATEGORY:=Multimedia
28 DEPENDS:=+libjpeg
29 TITLE:=webcam motion sensing and logging
30 DESCRIPTION:=Motion is a software motion detector
31 URL:=http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome
32 endef
33
34 define Build/Configure
35 $(call Build/Configure/Default,--without-ffmpeg \
36 --without-jpeg-mmx \
37 --without-mysql \
38 --without-pgsql \
39 )
40 endef
41
42 define Build/Compile
43 rm -rf $(PKG_INSTALL_DIR)
44 mkdir -p $(PKG_INSTALL_DIR)
45 $(MAKE) -C $(PKG_BUILD_DIR) \
46 DESTDIR="$(PKG_INSTALL_DIR)" \
47 all install
48 endef
49
50 define Package/motion/install
51 install -d -m0755 $(1)/usr/bin
52 $(CP) $(PKG_INSTALL_DIR)/usr/bin/motion $(1)/usr/bin/
53 endef
54
55 $(eval $(call BuildPackage,motion))