wok view libtorrent-rasterbar/receipt @ rev 9349

Add docbook-xml-42.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Mar 19 21:01:05 2011 +0000 (2011-03-19)
parents 2d7a7b6c0b63
children 50aab44bec09
line source
1 # SliTaz package receipt.
3 PACKAGE="libtorrent-rasterbar"
4 VERSION="0.15.5"
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 DEPENDS="libboost-thread libboost-filesystem libboost-python openssl python"
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 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --enable-python-binding &&
18 make && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
26 cp -a $_pkg/usr/lib/python* $fs/usr/lib
27 }