wok view libtorrent/receipt @ rev 17581

Up: elfutils 0.161
author Alexander Medvedev <devl547@gmail.com>
date Sun Feb 08 18:13:43 2015 +0000 (2015-02-08)
parents b18dfc65984c
children 51370c1650e9
line source
1 # SliTaz package receipt.
3 PACKAGE="libtorrent"
4 VERSION="0.13.3"
5 CATEGORY="network"
6 SHORT_DESC="Torrent library for rtorrent"
7 MAINTAINER="mimas@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://libtorrent.rakshasa.no/"
11 WGET_URL="http://libtorrent.rakshasa.no/downloads/$TARBALL"
13 CROSS_BUGS="bug: can not run test program"
14 #HOST_ARCH="i486 arm"
16 DEPENDS="curl libsigc++ openssl"
17 BUILD_DEPENDS="curl-dev libsigc++-dev openssl-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }