[packages] polipo: solve a bunch of "sh: bad number" errors in init script, always...
[openwrt/svn-archive/archive.git] / net / opendchub / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=opendchub
11 PKG_VERSION:=0.8.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/opendchub
16 PKG_MD5SUM:=e812ac26323f3a8113ce1a0761ce9544
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/opendchub
23 SUBMENU:=P2P
24 SECTION:=net
25 CATEGORY:=Network
26 DEPENDS:=+libopenssl +libpthread
27 TITLE:=software for the Direct Connect network
28 URL:=http://opendchub.sourceforge.net/
29 endef
30
31 define Package/opendchub/description
32 Open DC hub is a Unix/Linux version of the hub software
33 for the Direct Connect network
34 endef
35
36 CONFIGURE_ARGS += \
37 --disable-perl \
38
39 define Package/opendchub/install
40 $(INSTALL_DIR) $(1)/usr/bin
41 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/opendchub $(1)/usr/bin/
42 endef
43
44 $(eval $(call BuildPackage,opendchub))