[package] update rtorrent to 0.8.4-svn1087 (#4851)
[openwrt/svn-archive/archive.git] / net / rtorrent / Makefile
1 #
2 # Copyright (C) 2007-2008 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:=rtorrent
12
13 PKG_REV:=1087
14 PKG_VERSION:=0.8.4_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 TARGET_CPPFLAGS += \
43 -fno-strict-aliasing -fno-inline \
44
45 CONFIGURE_ARGS+= \
46 --enable-shared \
47 --disable-static \
48 --disable-debug \
49 --with-xmlrpc-c \
50
51 define Build/Configure
52 (cd $(PKG_BUILD_DIR); ./autogen.sh );
53 $(call Build/Configure/Default)
54 endef
55
56 define Build/Compile
57 $(MAKE) -C $(PKG_BUILD_DIR) \
58 DESTDIR="$(PKG_INSTALL_DIR)" \
59 all install
60 endef
61
62 define Package/rtorrent/install
63 $(INSTALL_DIR) $(1)/usr/bin
64 $(CP) $(PKG_INSTALL_DIR)/usr/bin/rtorrent $(1)/usr/bin/
65 endef
66
67 $(eval $(call BuildPackage,rtorrent))