libtorrent: initial import

This commit is contained in:
Thomas Penteker 2010-02-26 16:39:05 +01:00
parent 60d98a90d3
commit 350b940fe9
3 changed files with 69 additions and 0 deletions

52
libtorrent/.footprint Normal file
View File

@ -0,0 +1,52 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/torrent/
-rw-r--r-- root/root usr/include/torrent/bitfield.h
-rw-r--r-- root/root usr/include/torrent/chunk_manager.h
-rw-r--r-- root/root usr/include/torrent/common.h
-rw-r--r-- root/root usr/include/torrent/connection_manager.h
drwxr-xr-x root/root usr/include/torrent/data/
-rw-r--r-- root/root usr/include/torrent/data/block.h
-rw-r--r-- root/root usr/include/torrent/data/block_list.h
-rw-r--r-- root/root usr/include/torrent/data/block_transfer.h
-rw-r--r-- root/root usr/include/torrent/data/file.h
-rw-r--r-- root/root usr/include/torrent/data/file_list.h
-rw-r--r-- root/root usr/include/torrent/data/file_list_iterator.h
-rw-r--r-- root/root usr/include/torrent/data/file_manager.h
-rw-r--r-- root/root usr/include/torrent/data/file_utils.h
-rw-r--r-- root/root usr/include/torrent/data/piece.h
-rw-r--r-- root/root usr/include/torrent/data/transfer_list.h
-rw-r--r-- root/root usr/include/torrent/dht_manager.h
-rw-r--r-- root/root usr/include/torrent/download.h
-rw-r--r-- root/root usr/include/torrent/error.h
-rw-r--r-- root/root usr/include/torrent/event.h
-rw-r--r-- root/root usr/include/torrent/exceptions.h
-rw-r--r-- root/root usr/include/torrent/hash_string.h
-rw-r--r-- root/root usr/include/torrent/http.h
-rw-r--r-- root/root usr/include/torrent/object.h
-rw-r--r-- root/root usr/include/torrent/object_stream.h
-rw-r--r-- root/root usr/include/torrent/path.h
drwxr-xr-x root/root usr/include/torrent/peer/
-rw-r--r-- root/root usr/include/torrent/peer/client_info.h
-rw-r--r-- root/root usr/include/torrent/peer/client_list.h
-rw-r--r-- root/root usr/include/torrent/peer/connection_list.h
-rw-r--r-- root/root usr/include/torrent/peer/peer.h
-rw-r--r-- root/root usr/include/torrent/peer/peer_info.h
-rw-r--r-- root/root usr/include/torrent/peer/peer_list.h
-rw-r--r-- root/root usr/include/torrent/poll.h
-rw-r--r-- root/root usr/include/torrent/poll_epoll.h
-rw-r--r-- root/root usr/include/torrent/poll_kqueue.h
-rw-r--r-- root/root usr/include/torrent/poll_select.h
-rw-r--r-- root/root usr/include/torrent/rate.h
-rw-r--r-- root/root usr/include/torrent/resume.h
-rw-r--r-- root/root usr/include/torrent/throttle.h
-rw-r--r-- root/root usr/include/torrent/torrent.h
-rw-r--r-- root/root usr/include/torrent/tracker.h
-rw-r--r-- root/root usr/include/torrent/tracker_list.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libtorrent.la
lrwxrwxrwx root/root usr/lib/libtorrent.so -> libtorrent.so.11.0.6
lrwxrwxrwx root/root usr/lib/libtorrent.so.11 -> libtorrent.so.11.0.6
-rwxr-xr-x root/root usr/lib/libtorrent.so.11.0.6
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libtorrent.pc

1
libtorrent/.md5sum Normal file
View File

@ -0,0 +1 @@
037499ed708aaf72988cee60e5a8d96b libtorrent-0.12.6.tar.gz

16
libtorrent/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# Description: torrent library
# URL: http://libtorrent.rakshasa.no
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: libsigc++ curl
name=libtorrent
version=0.12.6
release=1
source=(http://libtorrent.rakshasa.no/downloads/libtorrent-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make install DESTDIR=$PKG
}