996067d6b3
git-svn-id: svn://svn.openwrt.org/openwrt/packages@15244 3c298f89-4303-0410-b956-a3cf2f4a3e73
41 lines
885 B
Makefile
41 lines
885 B
Makefile
#
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=spcaview
|
|
PKG_VERSION:=20071224
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://mxhaard.free.fr/spca50x/Download/
|
|
PKG_MD5SUM:=12e46424844b937dd55eab28f74bcd8d
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/spcacat
|
|
SECTION:=multimedia
|
|
CATEGORY:=Multimedia
|
|
TITLE:=SPCA5xx webcam spcacat utility
|
|
DEPENDS:=+libpthread
|
|
URL:=http://mxhaard.free.fr/spca50x
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CC="$(TARGET_CC)" \
|
|
SERVFLAGS="$(TARGET_CFLAGS) -DLINUX" \
|
|
spcacat
|
|
endef
|
|
|
|
define Package/spcacat/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_BUILD_DIR)/spcacat $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,spcacat))
|