4579e658563a9619664e538895eff161d02610c8
[openwrt/svn-archive/archive.git] / net / ctorrent / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=ctorrent
12 PKG_VERSION:=dnh3.2
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.rahul.net/dholmes/ctorrent/
17 PKG_MD5SUM:=23b37cd7b558ad6a27974b311499bab6
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/ctorrent
22 SECTION:=net
23 CATEGORY:=Network
24 DEPENDS:=+libopenssl +uclibcxx
25 TITLE:=console-based BitTorrent client
26 URL:=http://www.rahul.net/dholmes/ctorrent/
27 endef
28
29 define Package/ctorrent/description
30 CTorrent is a BitTorrent client written in the C programming language,
31 known to be a very robust and mature programming language, which produces
32 fast and optimized application.
33 endef
34
35 CONFIGURE_VARS += \
36 CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include/uClibc++" \
37 CXXFLAGS="$$$$CXXFLAGS -fno-builtin -fno-rtti -nostdinc++" \
38 LIBS="-nodefaultlibs -lcrypto -luClibc++ -lm"
39
40 define Package/ctorrent/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,ctorrent))