2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-17 10:21:41 +00:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2006-06-17 10:21:41 +00:00
|
|
|
|
2007-01-22 08:15:06 +00:00
|
|
|
PKG_NAME:=gspcav1
|
2008-01-06 12:44:23 +00:00
|
|
|
PKG_VERSION:=20071224
|
2006-06-17 10:21:41 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2007-01-22 08:15:06 +00:00
|
|
|
PKG_SOURCE_URL:=http://mxhaard.free.fr/spca50x/Download
|
2008-01-06 12:44:23 +00:00
|
|
|
PKG_MD5SUM:=14853ba1f4edc1e685039fca56e5ebf
|
2006-06-17 10:21:41 +00:00
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2006-06-17 10:21:41 +00:00
|
|
|
|
2007-09-16 16:39:18 +00:00
|
|
|
define KernelPackage/video-gspca
|
|
|
|
SUBMENU:=Video Support
|
|
|
|
TITLE:=SPCA5xx based USB webcam support
|
2006-09-23 13:44:20 +00:00
|
|
|
URL:=http://mxhaard.free.fr/
|
2007-09-20 07:31:06 +00:00
|
|
|
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core
|
2007-01-22 08:15:06 +00:00
|
|
|
FILES:=$(PKG_BUILD_DIR)/gspca.$(LINUX_KMOD_SUFFIX)
|
2007-02-19 10:08:40 +00:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,gspca)
|
2006-06-17 10:21:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(LINUX_DIR) \
|
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
|
|
SUBDIRS="$(PKG_BUILD_DIR)" \
|
|
|
|
modules
|
|
|
|
endef
|
|
|
|
|
2007-09-16 16:39:18 +00:00
|
|
|
$(eval $(call KernelPackage,video-gspca))
|