06ee3464bc27cd6aae1e1c5cbbe871d6b247317a
[openwrt/svn-archive/archive.git] / libs / libtorrent / 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libtorrent
11
12 PKG_REV:=1087
13 PKG_VERSION:=0.12.4_r$(PKG_REV)
14 PKG_RELEASE:=4
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)
19 PKG_SOURCE_PROTO:=svn
20
21 PKG_FIXUP = libtool
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libtorrent
26 SECTION:=libs
27 CATEGORY:=Libraries
28 TITLE:=Rakshasa's BitTorrent library
29 URL:=http://libtorrent.rakshasa.no/
30 DEPENDS:=+libopenssl +libsigcxx
31 endef
32
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.
39 endef
40
41 TARGET_CFLAGS += $(FPIC)
42
43 TARGET_CPPFLAGS += \
44 -fno-strict-aliasing -fno-inline \
45
46 # XXX: rtorrent needs encryption (--enable-openssl)
47 CONFIGURE_ARGS+= \
48 --enable-shared \
49 --enable-static \
50 --enable-aligned \
51 --disable-debug \
52 --enable-openssl \
53
54 define Build/Configure
55 (cd $(PKG_BUILD_DIR); ./autogen.sh );
56 $(call Build/Configure/Default)
57 endef
58
59 define Build/Compile
60 $(MAKE) -C $(PKG_BUILD_DIR) \
61 DESTDIR="$(PKG_INSTALL_DIR)" \
62 all install
63 endef
64
65 define Build/InstallDev
66 $(INSTALL_DIR) $(1)/usr/include
67 $(CP) $(PKG_INSTALL_DIR)/usr/include/torrent $(1)/usr/include/
68 $(INSTALL_DIR) $(1)/usr/lib
69 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtorrent.{a,so*} $(1)/usr/lib/
70 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
71 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libtorrent.pc $(1)/usr/lib/pkgconfig/
72 endef
73
74 define Package/libtorrent/install
75 $(INSTALL_DIR) $(1)/usr/lib
76 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtorrent.so.* $(1)/usr/lib/
77 endef
78
79 $(eval $(call BuildPackage,libtorrent))
80