blob: 73f11f2d2f26076ff11f27b2359e600ab8515cd3 (
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
# Upstream: RuneScape Linux <noreply@jagex.com>
# Contributor: Ivan Puntiy <ivan.puntiy-at-gmail>
# Contributor: Mantas Mikulėnas <grawity@gmail.com>
pkgname=runescape-launcher
pkgver=2.2.11
pkgrel=1
pkgdesc="RuneScape Game Client (NXT)"
arch=(x86_64)
license=(custom)
url="https://www.runescape.com/"
depends=(
cairo # libcairo2
gcc-libs # libgcc1
gdk-pixbuf2 # libgdk-pixbuf2.0-0
glib2 # libglib2.0-0
glibc # libc6
gtk2 # libgtk2.0-0
libcap # libcap2-bin
libglvnd # libopengl0, libegl1
libsm # libsm6
libx11 # libx11-6
libxxf86vm # libxxf86vm1
openssl-1.1 # libssl1.1
pango # libpango-1.0-0, libpangocairo-1.0-0
sdl2 # libsdl2-2.0-0
zlib # zlib1g
)
source=("${pkgname}_${pkgver}_Release::https://content.runescape.com/downloads/ubuntu/dists/trusty/Release"
"${pkgname}_${pkgver}_Release.gpg::https://content.runescape.com/downloads/ubuntu/dists/trusty/Release.gpg")
source_x86_64=("${pkgname}_${pkgver}_Packages::https://content.runescape.com/downloads/ubuntu/dists/trusty/non-free/binary-amd64/Packages"
"${pkgname}_${pkgver}_amd64.deb::https://content.runescape.com/downloads/ubuntu/pool/non-free/r/$pkgname/${pkgname}_${pkgver}_amd64.deb")
sha256sums=('SKIP'
'SKIP')
sha256sums_x86_64=('SKIP'
'SKIP')
validpgpkeys=("AAC9264309E4D717441DB9527373B12CE03BEB4B")
install="install.sh"
# avoid caching in makepkg!
SRCDEST=$startdir
_msg() {
printf '%s\n' "$*"
}
_err() {
printf '\e[1;31mError:\e[m %s\n' "$*" >&2
}
_verify_repo() {
if (( SKIPPGPCHECK )); then
return 0
fi
local Release=${source[0]%%::*}
local Packages=${source_x86_64[0]%%::*}
local debfile=${source_x86_64[1]%%::*}
local jagexpgpkey=${validpgpkeys[0]}
local _out
_msg "Verifying 'Release' file (PGP)..."
if ! _out=$(gpg --batch --status-fd 1 \
--trust-model always \
--verify "$Release.gpg" "$Release" \
2>&1); then
_err "PGP signature of 'Release' could not be verified"
echo "$_out" | grep -v "^\\[GNUPG:\\]"
return 1
elif ! grep -Eqs "^\\[GNUPG:\\] VALIDSIG $jagexpgpkey " <<< "$_out"; then
_err "PGP signature of 'Release' was not made by Jagex"
echo "$_out" | grep -v "^\\[GNUPG:\\]"
return 1
fi
_msg "Parsing 'Release' file..."
_out=$(awk 'ok && $3 == "non-free/binary-amd64/Packages" {print $1; exit}
/^[^[:space:]]/ {ok=0}
/^SHA256:$/ {ok=1}' < "$Release")
if ! [[ $_out =~ ^[0-9a-f]{64}$ ]]; then
_err "Could not find hash of 'non-free/binary-amd64/Packages' in the 'Release' file"
return 1
fi
_msg "Verifying 'Packages' file (SHA256)..."
if ! sha256sum --quiet --check <<< "$_out *$Packages"; then
_err "Hash sum of 'Packages' did not match expected"
return 1
fi
_msg "Parsing 'Packages' file..."
_out=$(awk 'ok && /^SHA256:/ {print $2; exit}
/^Package:/ {ok=0}
/^Package: runescape-launcher$/ {ok=1}' < "$Packages")
if ! [[ $_out =~ ^[0-9a-f]{64}$ ]]; then
_err "Could not find hash of '$debfile' in the 'Packages' file"
return 1
fi
_msg "Verifying '$debfile' (SHA256)..."
if ! sha256sum --quiet --check <<< "$_out *$debfile"; then
_err "Hash sum of '$debfile' did not match expected"
return 1
fi
}
prepare() {
_verify_repo
rm -rf "$srcdir/$pkgname-$pkgver"
mkdir "$srcdir/$pkgname-$pkgver"
cd "$srcdir/$pkgname-$pkgver"
_msg "Extracting control files..."
bsdtar xvf ../control.tar.xz
_msg "Extracting data files..."
bsdtar xvf ../data.tar.xz
}
package() {
cd "$srcdir/$pkgname-$pkgver"
cp -a usr "$pkgdir"
# XXX: maybe move the binary out of /usr/share to where it belongs
#mkdir -p "$pkgdir"/usr/lib/runescape-launcher
#mv "$pkgdir"/usr/{share/games,lib}/runescape-launcher/runescape
#sed -i 's,/usr/share/games,/usr/lib,' "$pkgdir"/usr/bin/runescape-launcher
install -Dm0644 copyright "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
install -Dm0644 changelog "$pkgdir"/usr/share/doc/$pkgname/changelog
}
# vim: ft=sh:ts=4:sw=4:et:nowrap
|