packages/net/miau/Makefile
swalker 2af651ae13 [packages] miau: update to 0.6.6
* drop the local outdated miaurc in favor of upstream's example
 * drop /etc/default/miau
 * add conffile
 * use better upstream url
 * remove trailing whitespace


git-svn-id: svn://svn.openwrt.org/openwrt/packages@24861 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-01-01 06:54:37 +00:00

58 lines
1.3 KiB
Makefile

#
# 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))