blob: 11bd395edd2040c03b97488dc96ccdb3107e7a1c (
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
51
|
# $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.3
_commit=6f8c1246dc013d1d5c39ecd66373346ac42fe746
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-only')
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=('38309524b9ab69545389cbda2925149eb05f163626c68a090ae5305442d9c3ad'
'e28c4fbb8bdc5322467726eff66c778029609724bb192f920bc4e249db6ebfdf')
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
}
|