add file type autodetection for the unpack command and nuke PKG_CAT:= in lots of...
[openwrt/staging/chunkeey.git] / package / spca5xx / 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 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=gspcav1
13 PKG_VERSION:=20070110
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=http://mxhaard.free.fr/spca50x/Download
18 PKG_MD5SUM:=1e3fa004490a07b7b76de03d70b3e8ea
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define KernelPackage/gspca
23 SUBMENU:=Other modules
24 DEPENDS:=@LINUX_2_6 kmod-usb-core kmod-videodev @VIDEO_SUPPORT
25 TITLE:=Driver for SPCA5xx based USB cameras
26 URL:=http://mxhaard.free.fr/
27 VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
28 FILES:=$(PKG_BUILD_DIR)/gspca.$(LINUX_KMOD_SUFFIX)
29 AUTOLOAD:=$(call AutoLoad,90,gspca)
30 endef
31
32 define Build/Compile
33 $(MAKE) -C $(LINUX_DIR) \
34 ARCH="$(LINUX_KARCH)" \
35 CROSS_COMPILE="$(TARGET_CROSS)" \
36 KERNELVERSION="$(KERNEL)" \
37 KERNEL_VERSION="$(LINUX_VERSION)" \
38 KERNELDIR="$(LINUX_DIR)" \
39 SUBDIRS="$(PKG_BUILD_DIR)" \
40 modules
41 endef
42
43 $(eval $(call KernelPackage,gspca))