massive Makefile cleanup, add missing 'svn:keywords' property
[openwrt/svn-archive/archive.git] / net / miau / 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:=miau
12 PKG_VERSION:=0.6.0.2
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/miau
17 PKG_MD5SUM:=1b78d219a03655399c165eeb021cddd8
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/miau
26 SECTION:=net
27 CATEGORY:=Network
28 TITLE:=Another IRC-bouncer/proxy
29 DESCRIPTION:=\
30 In short, miau is an IRC-bouncer/proxy.\\\
31 Being more verbose, miau is small but quite featured \\\
32 IRC-bouncer - a service bit like HTTP-proxy, but \\\
33 for IRC-networks.
34 URL:=http://sourceforge.net/projects/miau/
35 endef
36
37 define Build/Configure
38 $(call Build/Configure/Default, \
39 --enable-automode \
40 --enable-releasenick \
41 --enable-uptime \
42 --enable-privlog \
43 --enable-onconnect \
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/miau/install
54 install -d -m0755 $(1)/usr/bin
55 $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
56 install -d -m0755 $(1)/etc/init.d
57 install -d -m0755 $(1)/etc/default
58 install -d -m0755 $(1)/etc/miau
59 install -m0755 ./files/miau.init $(1)/etc/init.d/miau
60 install -m0644 ./files/miau $(1)/etc/default/miau
61 install -m0644 ./files/miaurc $(1)/etc/miau/miaurc
62 endef
63
64 $(eval $(call BuildPackage,miau))