Upgrade xinetd to 2.3.14 (#3669)
[openwrt/svn-archive/archive.git] / utils / setpwc / 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
11 PKG_NAME:=setpwc
12 PKG_VERSION:=1.2
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
16 PKG_SOURCE_URL:=http://www.vanheusden.com/setpwc/
17 PKG_MD5SUM:=1bc721cdfcbac24027e2afc93685d29f
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/setpwc
22 SECTION:=utils
23 CATEGORY:=Utilities
24 TITLE:=Philips (and compatibles) WebCams (PWC) control utility
25 URL:=http://www.vanheusden.com/setpwc/
26 endef
27
28 define Package/setpwc/description
29 With setpwc you can set and list various settings of Philips (and
30 compatibles) WebCams with the 'PWC chipset'.
31 endef
32
33 define Build/Compile
34 $(TARGET_CC) $(TARGET_CFLAGS) -DVERSION=\"$(PKG_VERSION)\" -o $(PKG_BUILD_DIR)/setpwc $(PKG_BUILD_DIR)/setpwc.c
35 endef
36
37 define Package/setpwc/install
38 $(INSTALL_DIR) $(1)/usr/bin
39 $(INSTALL_BIN) $(PKG_BUILD_DIR)/setpwc $(1)/usr/bin/
40 endef
41
42 $(eval $(call BuildPackage,setpwc))