blob: 887f559b7f820547122ae3b49cc1dd8316160e2b (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# Maintainer: skydrome <skydrome@i2pmail.org>
# Contributor: skydrome <skydrome@i2pmail.org>
# Compile a debug build?
_debug=n
# Compile from a specific commit?
_commit=HEAD
_branch=feature-bind
pkgname=rtorrent-pyro-git
pkgver=20161207
pkgrel=1
pkgdesc="Ncurses BitTorrent client based on libTorrent - rTorrent-git with Pyroscope patches"
url="https://github.com/pyroscope/rtorrent-ps"
license=('GPL')
arch=('i686' 'x86_64' 'armv7h')
depends=('libtorrent-pyro-git' 'libsigc++' 'ncurses' 'curl' 'xmlrpc-c')
makedepends=('git' 'cppunit')
optdepends=('ttf-dejavu: for utf8 glyphs')
conflicts=('rtorrent' 'rtorrent-git')
provides=('rtorrent')
install='pyroscope.install'
backup=('usr/share/doc/rtorrent/rtorrent.rc.sample')
[[ $_debug = 'n' ]] &&
_debug='--disable-debug' || options=(!strip)
_url="https://raw.githubusercontent.com/pyroscope/rtorrent-ps/master/patches"
source=("git://github.com/rakshasa/rtorrent.git#branch=$_branch"
"rtorrent.rc.sample"
"${_url}/ps-ui_pyroscope_all.patch"
"${_url}/pyroscope.patch"
"${_url}/ui_pyroscope.patch"
"${_url}/command_pyroscope.cc"
"${_url}/ui_pyroscope.cc"
"${_url}/ui_pyroscope.h")
md5sums=('SKIP'
'35e2c69152a3c2137c5958f9f27cb906'
'7a88f8ab5d41242fdf1428de0e2ca182'
'bd04a0699b80c8042e1cf63a7e0e4222'
'0a2bbaf74c7160ba33876dcc2f050f14'
'75b2f47edad1f27eb0aca495c6474089'
'afd9f0e9ed816069b584e19c88b0a4bb'
'1258acfc82c50a8f452ace87fef0b416')
pkgver() {
cd "$srcdir/rtorrent"
git log -1 --format="%cd" --date=short "$_commit" |tr -d -
}
prepare() {
cd "$srcdir/rtorrent"
#patch -Np1 -i "${startdir}/rtorrent.patch"
sed -i doc/scripts/update_commands_0.9.sed \
-e "s:':\":g"
sed -i ../{command_pyroscope.cc,ui_pyroscope.cc} \
-e "s:tr1:std:" \
-e "s:print_download_info:print_download_info_full:"
sed -i configure.ac \
-e "s:\\(AC_DEFINE(HAVE_CONFIG_H.*\\):\1\nAC_DEFINE(RT_HEX_VERSION, 0x000907, version checks):"
sed -i src/ui/download_list.cc \
-e "s:rTorrent \" VERSION:rTorrent-PS git~$(git rev-parse --short $_commit) \" VERSION:"
for i in ${srcdir}/*.patch; do
sed -f doc/scripts/update_commands_0.9.sed -i "$i"
msg "Patching $i"
patch -uNlp1 -i "$i"
done
for i in ${srcdir}/*.{cc,h}; do
sed -f doc/scripts/update_commands_0.9.sed -i "$i"
ln -sf "$i" src
done
./autogen.sh
}
build() {
cd "$srcdir/rtorrent"
#export CC=clang
#export CXX=clang++
export CXXFLAGS+=" -fno-strict-aliasing -Wno-terminate"
export libtorrent_LIBS="-L/usr/lib -ltorrent"
./configure $_debug \
--prefix=/usr \
--with-xmlrpc-c
make
}
package() {
cd "$srcdir/rtorrent"
make DESTDIR="$pkgdir" install
install -Dm644 "$srcdir"/rtorrent.rc.sample "${pkgdir}/usr/share/doc/rtorrent/rtorrent.rc.sample"
install -Dm644 doc/faq.xml "${pkgdir}/usr/share/doc/rtorrent/faq.xml"
install -Dm644 doc/old/rtorrent.1 "${pkgdir}/usr/share/man/man1/rtorrent.1"
}
|