[packages] libtorrent: update to git head
[openwrt/svn-archive/archive.git] / libs / libtorrent / Makefile
1 #
2 # Copyright (C) 2007-2013 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 PKG_VERSION:=0.13.3-git
12 PKG_RELEASE=$(PKG_SOURCE_VERSION)-1
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=https://github.com/rakshasa/libtorrent.git
16 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
17 PKG_SOURCE_VERSION:=680576e23e7d5f642ee51486fdf301ac0195e188
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
19
20 PKG_FIXUP:=autoreconf
21 PKG_BUILD_PARALLEL:=1
22 PKG_INSTALL:=1
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define Package/libtorrent
27 SECTION:=libs
28 CATEGORY:=Libraries
29 TITLE:=Rakshasa's BitTorrent library
30 URL:=http://libtorrent.rakshasa.no/
31 DEPENDS:=+libopenssl +libsigcxx
32 endef
33
34 define Package/libtorrent/description
35 LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on
36 high performance and good code. The library differentiates itself from other
37 implementations by transfering directly from file pages to the network stack.
38 On high-bandwidth connections it is able to seed at 3 times the speed of the
39 official client.
40 endef
41
42 TARGET_LDFLAGS += $(LIBGCC_S)
43
44 CONFIGURE_ARGS+= \
45 --enable-shared \
46 --enable-static \
47 --enable-aligned \
48 --disable-debug \
49 --enable-openssl \
50 --disable-instrumentation
51
52 define Build/Configure
53 ( cd $(PKG_BUILD_DIR); ./autogen.sh );
54 $(call Build/Configure/Default)
55 endef
56
57 define Build/InstallDev
58 $(INSTALL_DIR) $(1)/usr/include
59 $(CP) $(PKG_INSTALL_DIR)/usr/include/torrent $(1)/usr/include/
60 $(INSTALL_DIR) $(1)/usr/lib
61 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtorrent.{a,so*} $(1)/usr/lib/
62 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
63 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libtorrent.pc $(1)/usr/lib/pkgconfig/
64 endef
65
66 define Package/libtorrent/install
67 $(INSTALL_DIR) $(1)/usr/lib
68 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libtorrent.so.* $(1)/usr/lib/
69 endef
70
71 $(eval $(call BuildPackage,libtorrent))