2007-04-01 12:00:19 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006,2007 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:=dircproxy
|
2009-07-25 16:13:15 +00:00
|
|
|
PKG_VERSION:=1.2.0-RC1
|
2007-04-01 12:00:19 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2009-07-25 16:13:15 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2009-06-13 17:01:55 +00:00
|
|
|
PKG_SOURCE_URL:=http://dircproxy.googlecode.com/files/
|
2009-07-25 16:13:15 +00:00
|
|
|
PKG_MD5SUM:=4fe2e82619c7b575599bfb236adbd872
|
2007-04-01 12:00:19 +00:00
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2007-04-01 12:00:19 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/dircproxy
|
2007-09-25 18:29:45 +00:00
|
|
|
SUBMENU:=Instant Messaging
|
2007-04-01 12:00:19 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=An IRC proxy server
|
2009-06-13 17:01:55 +00:00
|
|
|
URL:=http://dircproxy.googlecode.com/
|
2007-04-01 12:00:19 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
# uses Build/Configure/Default
|
|
|
|
|
|
|
|
define Package/dircproxy/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dircproxy{,-crypt} $(1)/usr/bin/
|
2007-04-01 12:00:19 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,dircproxy))
|