summaryrefslogtreecommitdiffstats
path: root/net/miau/Makefile
blob: 0ed075685728dc129b3f66414f2745e802c30a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# Copyright (C) 2006-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=miau
PKG_VERSION:=0.6.6
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@SF/miau
PKG_MD5SUM:=8778b8564c679cf5487b1972ca0b35e4

PKG_INSTALL:=1

include $(INCLUDE_DIR)/package.mk

define Package/miau
  SUBMENU:=Instant Messaging
  SECTION:=net
  CATEGORY:=Network
  TITLE:=Another IRC-bouncer/proxy
  URL:=http://miau.sourceforge.net/
endef

define Package/miau/description
	In short, miau is an IRC-bouncer/proxy.
	Being more verbose, miau is small but quite featured
	IRC-bouncer - a service bit like HTTP-proxy, but
	for IRC-networks.
endef

define Package/miau/conffiles
/etc/miau/miaurc
endef

CONFIGURE_ARGS += \
	--enable-automode \
	--enable-releasenick \
	--enable-uptime \
	--enable-privlog \
	--enable-onconnect

define Package/miau/install
	$(INSTALL_DIR) $(1)/usr/bin
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
	$(INSTALL_DIR) $(1)/etc/init.d
	$(INSTALL_DIR) $(1)/etc/miau
	$(INSTALL_BIN) ./files/miau.init $(1)/etc/init.d/miau
	$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/doc/miau/examples/miaurc $(1)/etc/miau/
endef

$(eval $(call BuildPackage,miau))