packages/luaexpat: fix whitespaces
[packages.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
13 PKG_RELEASE=$(PKG_SOURCE_VERSION)-1
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=https://github.com/rakshasa/libtorrent.git
17 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE_VERSION:=6fb96e38f166a1189c1b9af2a6e95bf569a81d4b
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
20
21 PKG_FIXUP:=autoreconf
22 PKG_BUILD_PARALLEL:=1
23 PKG_INSTALL:=1
24
25 include $(INCLUDE_DIR)/package.mk
26
27 define Package/libtorrent
28   SECTION:=libs
29   CATEGORY:=Libraries
30   TITLE:=Rakshasa's BitTorrent library
31   URL:=http://libtorrent.rakshasa.no/
32   DEPENDS:=+libopenssl +libsigcxx
33 endef
34
35 define Package/libtorrent/description
36  LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on
37  high performance and good code. The library differentiates itself from other
38  implementations by transfering directly from file pages to the network stack.
39  On high-bandwidth connections it is able to seed at 3 times the speed of the
40  official client.
41 endef
42
43 TARGET_LDFLAGS += $(LIBGCC_S)
44
45 CONFIGURE_ARGS+= \
46         --enable-shared \
47         --enable-static \
48         --enable-aligned \
49         --disable-debug \
50         --enable-openssl
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))