packages/net/ngircd/Makefile
acinonyx f7d79c3011 [pacakges] ngircd: Add berlios mirror (thanks Jonas Gorski)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@21337 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-03 10:22:18 +00:00

51 lines
1.3 KiB
Makefile

#
# Copyright (C) 2008-2010 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:=ngircd
PKG_VERSION:=15
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:= \
ftp://ngircd.barton.de/pub/ngircd/ \
ftp://ftp.berlios.de/pub/ngircd/
PKG_MD5SUM:=c183a85eba6fe51255983848f099c8ae
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/ngircd
SECTION:=net
CATEGORY:=Network
DEPENDS:=+zlib
TITLE:=Next Generation IRC Server
URL:=http://ngircd.barton.de
endef
define Package/ngircd/description
ngIRCd is an Open Source server for the Internet Relay Chat (IRC), which
is developed and published under the terms of the GNU General Public Licence.
ngIRCd means "next generation IRC daemon", it's written from scratch and
not deduced from the "grandfather of IRC daemons", the daemon of the IRCNet.
endef
define Package/ngircd/conffiles
/etc/ngircd.conf
endef
define Package/ngircd/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ngircd $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc
$(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/ngircd.conf $(1)/etc/
endef
$(eval $(call BuildPackage,ngircd))