1
0
forked from ports/contrib

libtorrent: adopted port

This commit is contained in:
Tim Biermann 2021-02-24 10:21:39 +00:00
parent 9b90f4040d
commit b1ad7b7b89
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF38qrR+bksqKZdJyE38wwfA1lbZdF16NF/Cwu8eW0ACw7TbD7ZoQJXEOS2qgUuk/8FohS7luOBylj40NbUNqXGAw=
SHA256 (Pkgfile) = 64862f717de4c7f1eea94b69f4c84c71c81bcf5cb1371a7f9f779d94b8c7c892
RWSagIOpLGJF34GAUR9XkOrOS03AGiWzFtx8TXRAbm3M/l/C4Oz77aiHG0lill3ic03mQScgvAXc+CfBCwkPKcP6ej0xogwo0A8=
SHA256 (Pkgfile) = ac0333356f5ab8530b71201aefdc4539be46a6826b1ab37b87acbd8c8ce9f878
SHA256 (.footprint) = 03d720eaa7e893a3d3feaa092e11a4d8694c49554ba3b473c5b2a349ee950d53
SHA256 (libtorrent-0.13.8.tar.gz) = ed115a28f4ae8cfcd33b94a597c076ca74fd549867a26e4fac9505c27288e983

View File

@ -1,7 +1,7 @@
# Description: torrent library
# URL: https://rakshasa.github.io/rtorrent
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: libsigc++ curl
# URL: https://rakshasa.github.io/rtorrent
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libsigc++ curl
name=libtorrent
version=0.13.8
@ -11,11 +11,10 @@ source=(http://rtorrent.net/downloads/libtorrent-$version.tar.gz)
build() {
cd $name-$version
# remove cppunit dependency
sed -i '/AM_PATH_CPPUNIT(.*)/d' configure.ac
./autogen.sh
./configure --prefix=/usr --enable-debug=no
./configure --prefix=/usr \
--enable-debug=no
make
make install DESTDIR=$PKG
}