wok view libtorrent-rasterbar/receipt @ rev 20895

updated espeak-dev again (1.45.05 -> 1.48.04)
author Hans-G?nter Theisgen
date Tue Feb 26 13:45:00 2019 +0100 (2019-02-26)
parents d7ecb10cce31
children a0209f5e747b
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="https://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 }