Upgrade hostapd to 0.5.8, thanks to Daniel Gimpelevich
[openwrt/svn-archive/archive.git] / package / spca5xx-le / 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: Makefile 7137 2007-05-08 18:40:02Z nbd $
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=spca5xx-le
13 PKG_VERSION:=1
14 PKG_RELEASE:=1
15
16 PKG_SOURCE:=$(PKG_NAME).tar.bz2
17 PKG_SOURCE_URL:=http://www.acmesystems.it/download/owrt/
18 PKG_MD5SUM:=
19 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define KernelPackage/spca5xx-le
24 SUBMENU:=Other modules
25 DEPENDS:=@LINUX_2_6 kmod-videodev @VIDEO_SUPPORT
26 TITLE:=Driver for SPCA5xx based USB cameras (Light Edition)
27 URL:=http://mxhaard.free.fr/
28 VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
29 FILES:=$(PKG_BUILD_DIR)/spca5xx.$(LINUX_KMOD_SUFFIX)
30 AUTOLOAD:=$(call AutoLoad,90,spca5xx)
31 endef
32
33 define Build/Compile
34 $(MAKE) -C $(LINUX_DIR) \
35 ARCH="$(LINUX_KARCH)" \
36 CROSS_COMPILE="$(TARGET_CROSS)" \
37 KERNELVERSION="$(KERNEL)" \
38 KERNEL_VERSION="$(LINUX_VERSION)" \
39 KERNELDIR="$(LINUX_DIR)" \
40 SUBDIRS="$(PKG_BUILD_DIR)" \
41 modules
42 endef
43
44 $(eval $(call KernelPackage,spca5xx-le))