c8d71729ac4ff77bd076c0c69aaa8bd92287c8a2
2 # Copyright (C) 2007-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
13 PKG_VERSION
:=0.12.4_r
$(PKG_REV
)
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=svn
://rakshasa.no
/libtorrent
/trunk
/libtorrent
17 PKG_SOURCE_SUBDIR
:=$(PKG_NAME
)-$(PKG_VERSION
)
18 PKG_SOURCE_VERSION
:=$(PKG_REV
)
23 include $(INCLUDE_DIR
)/package.mk
25 define Package
/libtorrent
28 TITLE
:=Rakshasa
's BitTorrent library
29 URL:=http://libtorrent.rakshasa.no/
30 DEPENDS:=+libopenssl +libsigcxx
33 define Package/libtorrent/description
34 LibTorrent is a BitTorrent library written in C++ for *nix, with a focus
35 on high performance and good code. The library differentiates itself from
36 other implementations by transfering directly from file pages to the
37 network stack. On high-bandwidth connections it is able to seed at 3 times
38 the speed of the official client.
41 ifneq ($(CONFIG_GCC_VERSION_3_4)$(CONFIG_GCC_VERSION_4_1),)
42 TARGET_CPPFLAGS += -fno-strict-aliasing -fno-inline
45 ifneq ($(CONFIG_GCC_VERSION_4_2)$(CONFIG_GCC_VERSION_4_3),)
46 TARGET_CPPFLAGS += -fno-inline
50 # XXX: rtorrent needs encryption (--enable-openssl)
58 define Build/Configure
59 (cd $(PKG_BUILD_DIR); ./autogen.sh );
60 $(call Build/Configure/Default)
64 $(MAKE) -C $(PKG_BUILD_DIR) \
65 DESTDIR="$(PKG_INSTALL_DIR)" \
69 define Build/InstallDev
70 $(INSTALL_DIR) $(1)/usr/include
71 $(CP) $(PKG_INSTALL_DIR)/usr/include/torrent $(1)/usr/include/
72 $(INSTALL_DIR) $(1)/usr/lib
73 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtorrent.{a,so*} $(1)/usr/lib/
74 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
75 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libtorrent.pc $(1)/usr/lib/pkgconfig/
78 define Package/libtorrent/install
79 $(INSTALL_DIR) $(1)/usr/lib
80 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtorrent.so.* $(1)/usr/lib/
83 $(eval $(call BuildPackage,libtorrent))