wok view libtorrent-rasterbar/receipt @ rev 18175

Up: openssh 6.9
author Alexander Medvedev <devl547@gmail.com>
date Wed Jul 01 21:28:11 2015 +0000 (2015-07-01)
parents 8d6f480bf664
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="libtorrent-rasterbar"
4 VERSION="0.16.13"
5 CATEGORY="development"
6 SHORT_DESC="A C++ library that aims to be a good alternative to all the other bittorrent implementations around"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.rasterbar.com/products/libtorrent/"
11 WGET_URL="http://libtorrent.googlecode.com/files/$TARBALL"
13 DEPENDS="libboost-thread libboost-math libboost-filesystem libboost-python openssl python"
14 BUILD_DEPENDS="libboost-thread-dev libboost-math-dev libboost-filesystem-dev libboost-python-dev openssl-dev zlib-dev python-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --enable-python-binding \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 cp -a $install/usr/lib/python* $fs/usr/lib
31 }