wok-next rev 2018
Add: libtorrent, libtorrent-dev, rtorrent
author | Fabrice THIROUX <mimas@slitaz.org> |
---|---|
date | Thu Jan 08 23:16:54 2009 +0100 (2009-01-08) |
parents | bbe5f22367e4 |
children | 1959a9a9e3d7 |
files | libtorrent-dev/receipt libtorrent/receipt rtorrent/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libtorrent-dev/receipt Thu Jan 08 23:16:54 2009 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="libtorrent-dev" 1.7 +VERSION="0.12.4" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Libtorrent development files." 1.10 +MAINTAINER="mimas@slitaz.org" 1.11 +WANTED="libtorrent" 1.12 +WEB_SITE="http://libtorrent.rakshasa.no/" 1.13 + 1.14 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.15 +genpkg_rules() 1.16 +{ 1.17 + mkdir -p $fs/usr/lib/pkgconfig 1.18 + cp -a $_pkg/usr/include $fs/usr 1.19 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.20 + cp -a $_pkg/usr/lib/pkgconfig/*.pc $fs/usr/lib/pkgconfig 1.21 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libtorrent/receipt Thu Jan 08 23:16:54 2009 +0100 2.3 @@ -0,0 +1,33 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="libtorrent" 2.7 +VERSION="0.12.4" 2.8 +CATEGORY="network" 2.9 +SHORT_DESC="Torrent library for rtorrent" 2.10 +MAINTAINER="mimas@slitaz.org" 2.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.12 +WEB_SITE="http://libtorrent.rakshasa.no/" 2.13 +WGET_URL="http://libtorrent.rakshasa.no/downloads/$TARBALL" 2.14 +DEPENDS="curl libsigc++ openssl" 2.15 +BUILD_DEPENDS="curl-dev libsigc++-dev openssl-dev" 2.16 + 2.17 +# Rules to configure and make the package. 2.18 +compile_rules() 2.19 +{ 2.20 + cd $src 2.21 + ./configure \ 2.22 + --prefix=/usr \ 2.23 + --infodir=/usr/share/info \ 2.24 + --mandir=/usr/share/man \ 2.25 + $CONFIGURE_ARGS 2.26 + make 2.27 + make DESTDIR=$PWD/_pkg install 2.28 +} 2.29 + 2.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.31 +genpkg_rules() 2.32 +{ 2.33 + mkdir -p $fs/usr/lib 2.34 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.35 + strip -s $fs/usr/lib/* 2.36 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/rtorrent/receipt Thu Jan 08 23:16:54 2009 +0100 3.3 @@ -0,0 +1,34 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="rtorrent" 3.7 +VERSION="0.8.4" 3.8 +CATEGORY="network" 3.9 +SHORT_DESC="Ncurses based torrent client" 3.10 +MAINTAINER="mimas@slitaz.org" 3.11 +DEPENDS="ncurses libtorrent" 3.12 +BUILD_DEPENDS="ncurses-dev libtorrent-dev" 3.13 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.14 +WEB_SITE="http://libtorrent.rakshasa.no/" 3.15 +WGET_URL="http://libtorrent.rakshasa.no/downloads/$TARBALL" 3.16 + 3.17 +# Rules to configure and make the package. 3.18 +compile_rules() 3.19 +{ 3.20 + cd $src 3.21 + ./configure \ 3.22 + --prefix=/usr \ 3.23 + --infodir=/usr/share/info \ 3.24 + --mandir=/usr/share/man \ 3.25 + $CONFIGURE_ARGS 3.26 + make 3.27 + make DESTDIR=$PWD/_pkg install 3.28 +} 3.29 + 3.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.31 +genpkg_rules() 3.32 +{ 3.33 + mkdir -p $fs/usr 3.34 + cp -a $_pkg/usr/bin $fs/usr 3.35 + strip -s $fs/usr/bin/* 3.36 +} 3.37 +