[package] update rtorrent to 0.8.6 (#6263)
[openwrt/svn-archive/archive.git] / net / rtorrent / Makefile
1 #
2 # Copyright (C) 2007-2009 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
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=rtorrent
12
13 PKG_REV:=1106
14 PKG_VERSION:=0.8.6_r$(PKG_REV)
15 PKG_RELEASE:=1
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=svn://rakshasa.no/libtorrent/trunk/rtorrent
18 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
19 PKG_SOURCE_VERSION:=$(PKG_REV)
20 PKG_SOURCE_PROTO:=svn
21
22 PKG_FIXUP = libtool
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/rtorrent
27 SUBMENU:=BitTorrent
28 SECTION:=net
29 CATEGORY:=Network
30 TITLE:=BitTorrent client for ncurses
31 URL:=http://libtorrent.rakshasa.no/
32 DEPENDS:=+libcurl +libtorrent +libncurses +libsigcxx +xmlrpc-c
33 endef
34
35 define Package/rtorrent/description
36 rTorrent is a BitTorrent client for ncurses, using the libtorrent library.
37 The client and library are written in C++ with emphasis on speed and
38 efficiency, while delivering equivalent features to those found in GUI
39 based clients in an ncurses client.
40 endef
41
42 ifneq ($(CONFIG_GCC_VERSION_3_4)$(CONFIG_GCC_VERSION_4_1),)
43 TARGET_CPPFLAGS += -fno-strict-aliasing
44 endif
45
46 CONFIGURE_ARGS+= \
47 --enable-shared \
48 --disable-static \
49 --disable-debug \
50 --with-xmlrpc-c \
51
52 define Build/Configure
53 (cd $(PKG_BUILD_DIR); ./autogen.sh );
54 $(call Build/Configure/Default)
55 endef
56
57 define Build/Compile
58 $(MAKE) -C $(PKG_BUILD_DIR) \
59 DESTDIR="$(PKG_INSTALL_DIR)" \
60 all install
61 endef
62
63 define Package/rtorrent/install
64 $(INSTALL_DIR) $(1)/usr/bin
65 $(CP) $(PKG_INSTALL_DIR)/usr/bin/rtorrent $(1)/usr/bin/
66 endef
67
68 $(eval $(call BuildPackage,rtorrent))