summaryrefslogtreecommitdiff
path: root/pcr/ryzom-data
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/ryzom-data')
-rw-r--r--pcr/ryzom-data/PKGBUILD46
-rw-r--r--pcr/ryzom-data/ryzom-data.install19
-rwxr-xr-xpcr/ryzom-data/ryzomdata-update.sh22
3 files changed, 0 insertions, 87 deletions
diff --git a/pcr/ryzom-data/PKGBUILD b/pcr/ryzom-data/PKGBUILD
deleted file mode 100644
index 2665cc411..000000000
--- a/pcr/ryzom-data/PKGBUILD
+++ /dev/null
@@ -1,46 +0,0 @@
-# Mantainer: Jorge Araya Navarro <elcorreo@deshackra.com>
-pkgname='ryzom-data'
-group='ryzom'
-pkgver=0.8.0
-pkgrel=2
-arch=('any')
-url="http://media.ryzom.com/"
-license=('CCPL:by-sa')
-depends=('rsync')
-makedepends=('p7zip')
-pkgdesc="An awesome free software 3D MMORPG game. Game data."
-source=("http://tempestintheaether.org/public_downloads/ryzom_core_client-data-22-09-2013.7z" "ryzomdata-update.sh")
-sha256sums=('f1110efb49bfb733f290ab5136986036a9f61fb692802714d9e6ec9b7e08f3ec'
- '116c1c6bfe92bb55a6abf8401c290ef1505781a1cd76f67eb180f781f2034219')
-noextract=("ryzom_core_client-data-22-09-2013.7z")
-install=${pkgname}.install
-
-prepare() {
- cd "$srcdir/"
-
- msg "Extracting game data..."
- 7z x ryzom_core_client-data-22-09-2013.7z data/ >& /dev/null
- msg "Extraction completed!"
-
- cd "$srcdir/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/ ./
- msg 'Update completed!'
-}
-
-package() {
- cd "$srcdir/data/"
- # creating directories
- install -d -m 755 "$pkgdir/usr/bin/"
- install -d -m 755 "$pkgdir/usr/share/ryzom/data/"
- install -d -m 755 "${pkgdir}/usr/share/ryzom/data/fonts/"
-
- install -m 644 "$srcdir/ryzomdata-update.sh" "$pkgdir/usr/bin/"
- chmod +x "$pkgdir/usr/bin/ryzomdata-update.sh"
-
- # installing files
- install -m 644 fonts/* "${pkgdir}/usr/share/ryzom/data/fonts/"
- rm -rf fonts
-
- install -m 644 * "${pkgdir}/usr/share/ryzom/data/"
-}
diff --git a/pcr/ryzom-data/ryzom-data.install b/pcr/ryzom-data/ryzom-data.install
deleted file mode 100644
index 97fb2df21..000000000
--- a/pcr/ryzom-data/ryzom-data.install
+++ /dev/null
@@ -1,19 +0,0 @@
-pre_install() {
- cat <<EOM
- == IMPORTANT NOTICE ==
-
- Check for data updates regularly using the command 'ryzomdata-update.sh'.
- If you encounter any bug using that script, please report it (see links below)
- and assign your report to shackra (which is me, the actual package maintainer).
-
- Report any bug on:
- * https://labs.parabola.nu
-EOM
-}
-
-pre_upgrade() {
- pre_install
-}
-
-# vim:set ts=2 sw=2 et:
-# PS: vim sucks, Attn: Shackra, an EMACS user.
diff --git a/pcr/ryzom-data/ryzomdata-update.sh b/pcr/ryzom-data/ryzomdata-update.sh
deleted file mode 100755
index ff59cf779..000000000
--- a/pcr/ryzom-data/ryzomdata-update.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/sh
-# To the extent possible under law, Jorge Araya Navarro has waived all copyright and related or
-# neighboring rights to ryzomdata-update.sh. This work is published from: Costa Rica.
-
-error() {
- printf '\E[31m'; echo "$@"; printf '\E[0m'
-}
-
-if [[ $(id -u) -ne 0 ]] ; then
- error "Please run as root" ;
- exit 1 ;
-fi
-
-# if running as root, then start the update.
-if [ -d "/usr/share/ryzom/data/" ]; then
- cd /usr/share/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/ ./
- msg 'Update completed...'
-else
- error "Seems that /usr/share/ryzom/data does not exists. Please install ryzom-data package using pacman."
-fi