2006-06-27 03:35:46 +03: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 13:21:41 +03:00
|
|
|
# $Id$
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2006-06-17 13:21:41 +03:00
|
|
|
|
2007-01-22 10:15:06 +02:00
|
|
|
PKG_NAME:=gspcav1
|
2007-05-08 21:40:02 +03:00
|
|
|
PKG_VERSION:=20070508
|
2006-06-17 13:21:41 +03:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2007-01-22 10:15:06 +02:00
|
|
|
PKG_SOURCE_URL:=http://mxhaard.free.fr/spca50x/Download
|
2007-05-08 21:40:02 +03:00
|
|
|
PKG_MD5SUM:=e18a21b80e1728c6b51b799d1e671f8c
|
2006-06-17 13:21:41 +03:00
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2006-06-17 13:21:41 +03:00
|
|
|
|
2007-09-16 19:39:18 +03:00
|
|
|
define KernelPackage/video-gspca
|
|
|
|
SUBMENU:=Video Support
|
|
|
|
TITLE:=SPCA5xx based USB webcam support
|
2006-09-23 16:44:20 +03:00
|
|
|
URL:=http://mxhaard.free.fr/
|
2007-09-20 10:31:06 +03:00
|
|
|
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core
|
2007-01-22 10:15:06 +02:00
|
|
|
FILES:=$(PKG_BUILD_DIR)/gspca.$(LINUX_KMOD_SUFFIX)
|
2007-02-19 12:08:40 +02:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,gspca)
|
2006-06-17 13:21:41 +03: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 19:39:18 +03:00
|
|
|
$(eval $(call KernelPackage,video-gspca))
|