blob: 9e1f08c46bcc0f07c3f3da69d456a4f0f6eb4ddc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# $Id$
# Maintainer: Allen Zhong <pdev@zhoal.pw>
# Contributor: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Jaroslav Lichtblau <svetlemodry@archlinux.org>
# Contributor: Daenyth <Daenyth+Arch [at] gmail [dot] com>
# Contributor: Jeff Mickey <jeff@archlinux.org>
# Contributor: sh__
_pkgname=libtorrent
pkgname=libtorrent-ipv6
pkgver=0.15.1
pkgrel=1
pkgdesc='BitTorrent library with a focus on high performance and good code, with ipv6 support'
url='https://github.com/rakshasa/libtorrent'
arch=('x86_64')
license=('GPL-2.0-onl')
depends=('openssl' 'zlib')
makedepends=('git')
conflicts=("${_pkgname}")
provides=("${_pkgname}")
source=("$_pkgname::git+https://github.com/rakshasa/libtorrent.git#tag=v$pkgver"
tracker-ipv6.patch)
sha256sums=('8a8395a8a7042f4b3ec5b1b08f02cc44921bd1b10296f9cc5e7f17209d686cde'
'9d4d3a0e0a5a128d5a28cbff097aba731c78b90113260612dd646c7747f4f844')
prepare() {
cd "${srcdir}/${_pkgname}"
patch -Np1 -i ../tracker-ipv6.patch
sed '/AM_PATH_CPPUNIT/d' -i configure.ac
aclocal -I ./scripts -I .
autoheader
libtoolize --automake --copy --force
automake --add-missing --copy --gnu
autoconf -fiv
}
build() {
cd "${srcdir}/${_pkgname}"
export CXXFLAGS="${CXXFLAGS} -std=c++17 -fno-strict-aliasing"
./configure \
--prefix=/usr \
--disable-debug
make
}
package() {
cd "${srcdir}/${_pkgname}"
make DESTDIR="${pkgdir}" install
}
|