blob: 9f33a6794da98c60a45a65f27db30665d40955b1 (
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
|
# Mantainer: Jorge Araya Navarro <jorgean@lavabit.com>
pkgname='ryzom-data'
group='ryzom'
pkgver=0.8.0
pkgrel=1
arch=('any')
url="http://media.ryzom.com/"
license=('CCPL:by-sa')
makedepends=('rsync' 'p7zip')
conflicts=('ryzom-data')
pkgdesc="An awesome free software 3D MMORPG game. Game data."
source=("http://sourceforge.net/projects/ryzom/files/ryzom_client.7z/download" "updateryzomdata")
noextract=("download")
sha256sums=('fa9e44e1014f4ae8639f1ec092391a41f69fc343ce48dd39b55ffae06ec3291f'
'b42f74fd21cdbf6734214e5576dbbe7e4cf171bf5d712011fbea6529bd0123fd')
package() {
cd "$srcdir/"
if [[ -d "data" ]]; then
rm -rf data
fi
mv "download" "ryzom_client.7z"
msg "Extracting game data..."
7z x ryzom_client.7z ryzom/data/ >& /dev/null
cd ryzom/data/
msg "Updating the official Ryzom game data, this can take a while..."
rsync -rtzvu --progress --stats --recursive --timeout=30 www.ryzom.com::ryzom/data/ ./ >& /dev/null
msg 'Update completed...'
cd "$srcdir/ryzom/data"
# creating directories
install -d -m 755 "${pkgdir}/usr/share/ryzom/data/fonts/"
install -d -m 755 "${pkgdir}/etc/cron.d/"
# installing files
install -m 644 fonts/* "${pkgdir}/usr/share/ryzom/data/fonts/"
rm -rf fonts
install -m 644 * "${pkgdir}/usr/share/ryzom/data/"
install -m 644 ${srcdir}/updateryzomdata "${pkgdir}/etc/cron.d/"
}
|