diff options
-rw-r--r-- | conf/checksums.ini | 8 | ||||
-rw-r--r-- | packages/libtorrent/libtorrent_0.12.3.bb | 16 | ||||
-rw-r--r-- | packages/libtorrent/rtorrent_0.8.3.bb | 11 |
3 files changed, 35 insertions, 0 deletions
diff --git a/conf/checksums.ini b/conf/checksums.ini index 12be6980bd..d11b04f70e 100644 --- a/conf/checksums.ini +++ b/conf/checksums.ini @@ -9682,6 +9682,10 @@ sha256=eb6b8f8272c5a5cad0c7c6b949aa75632f45c295f09b2e1e90b6bce15b32b796 md5=76c818b095248ea9e4b140fff4e2fa2a sha256=3287c9be61f9ec8ddab99f9b679bbf58610d024bce980307f88151a552ecd1e3 +[http://libtorrent.rakshasa.no/downloads/libtorrent-0.12.3.tar.gz] +md5=db7c7a2236c2f6af5e02cf3e9384eb67 +sha256=6044618e37c2925615a08517e8b69ef84147ef5287a222fc451968b36a0a9be7 + [http://downloads.sourceforge.net/giflib/libungif-4.1.3.tar.bz2] md5=8c198831cc0495596c78134b8849e9ad sha256=59e835a57e6df03e4d2253b2357253f3d13da9473ff465563a3b9833a744fc36 @@ -13774,6 +13778,10 @@ sha256=59cc003bab753335b3ce14a908e663ea782514b3531dc7030379ff753ef1a78c md5=6216be7ce5e3ead9dc115eaeea863694 sha256=597cefac4535d7f3b752253e5997b3c851c261b26b966a39beb032dcf1d5baa7 +[http://libtorrent.rakshasa.no/downloads/rtorrent-0.8.3.tar.gz] +md5=d1b43acf08e371a56915293bbcf584c6 +sha256=554456550ca6e792297d6d39367120af5b2bd6181d514a43faf4e2f565721908 + [ftp://ftp.ruby-lang.org/pub/ruby/ruby-1.8.5.tar.gz] md5=3fbb02294a8ca33d4684055adba5ed6f sha256=19590e972b80333e26a6514c34d976c2037138361481a16f27b75e5d33f33a58 diff --git a/packages/libtorrent/libtorrent_0.12.3.bb b/packages/libtorrent/libtorrent_0.12.3.bb new file mode 100644 index 0000000000..5d711578ed --- /dev/null +++ b/packages/libtorrent/libtorrent_0.12.3.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "library implementing the bittorrent protocol" +HOMEPAGE = "http://libtorrent.rakshasa.no" +SECTION = "libs/network" +LICENSE = "GPL" +DEPENDS = "libsigc++-2.0 openssl" + +SRC_URI = "http://libtorrent.rakshasa.no/downloads/libtorrent-${PV}.tar.gz" + +inherit autotools pkgconfig + +EXTRA_OECONF = "--enable-aligned" + +do_stage() { + autotools_stage_all +} + diff --git a/packages/libtorrent/rtorrent_0.8.3.bb b/packages/libtorrent/rtorrent_0.8.3.bb new file mode 100644 index 0000000000..9ae0eed011 --- /dev/null +++ b/packages/libtorrent/rtorrent_0.8.3.bb @@ -0,0 +1,11 @@ +DESCRIPTION = "Console bittorrent client using libtorrent" +HOMEPAGE = "http://libtorrent.rakshasa.no" +SECTION = "libs/network" +LICENSE = "GPL" +DEPENDS = "libtorrent curl ncurses gnutls libgpg-error" + +SRC_URI = "http://libtorrent.rakshasa.no/downloads/rtorrent-${PV}.tar.gz \ + file://autoconf-cross-fix.patch;patch=1" + +inherit autotools + |