massive Makefile cleanup, add missing 'svn:keywords' property
[openwrt/svn-archive/archive.git] / utils / sane-backends / 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:=sane-backends
12 PKG_VERSION:=1.0.17
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=ftp://ftp.sane-project.org/pub/sane/$(PKG_NAME)-$(PKG_VERSION)/
17 PKG_MD5SUM:=b51c10da8a81a04e1bae88c9e6556df2
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/sane-backends
26 SECTION:=utils
27 CATEGORY:=Utilities
28 TITLE:=Scanner Access Now Easy (backends)
29 DESCRIPTION:=\
30 SANE (Scanner Access Now Easy) is a universal scanner interface.
31 URL:=http://www.sane-project.org
32 endef
33
34 define Package/sane-backends/conffiles
35 /etc/sane.d/saned.conf
36 endef
37
38 define Build/Configure
39 $(call Build/Configure/Default, \
40 --disable-ipv6 \
41 --disable-translations \
42 --without-gphoto2 \
43 --disable-debug \
44 )
45 endef
46
47 define Build/Compile
48 $(MAKE) -C $(PKG_BUILD_DIR) \
49 DESTDIR="$(PKG_INSTALL_DIR)" \
50 all install
51 endef
52
53 define Package/sane-backends/install
54 install -d -m0755 $(1)/etc/sane.d
55 $(CP) $(PKG_INSTALL_DIR)/etc/sane.d/*.conf $(1)/etc/sane.d/
56 install -d -m0755 $(1)/usr/sbin
57 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/saned $(1)/usr/sbin/
58 endef
59
60 $(eval $(call BuildPackage,sane-backends))