summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Puntiy2015-02-24 00:34:02 +0200
committerIvan Puntiy2015-02-24 00:37:31 +0200
commita475df42e8f86dba83a205d62c4a87f7029853ff (patch)
tree157dffd12b975e39007cf06faa1e290c9944d445
parent5085439bfbe8e4edb64b7fd30539c856f9505ea3 (diff)
downloadaur-a475df42e8f86dba83a205d62c4a87f7029853ff.tar.gz
unix-runescape-client 4.3.1-1
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD6
-rw-r--r--rsu-client-4.2.9-combo-fix.patch15
3 files changed, 7 insertions, 22 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8fa884c971df..d2de6e597cc8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = unix-runescape-client
pkgdesc = RuneScape client for Linux and Unix
- pkgver = 4.2.9
- pkgrel = 2
+ pkgver = 4.3.1
+ pkgrel = 1
url = http://hkprojects.weebly.com/runescape-client-for-linux-and-unix.html
install = unix-runescape-client.install
arch = any
@@ -19,8 +19,8 @@ pkgbase = unix-runescape-client
optdepends = p7zip: to extract launcher from .msi
optdepends = cairo-nogl: if game crashes during loading/auto-setup
conflicts = runescape-client-bin
- source = unix-runescape-client-4.2.9.tar.gz::https://github.com/HikariKnight/rsu-client/archive/v4.2.9.tar.gz
- md5sums = 91713a6f7328a689445c424a4509dfb7
+ source = unix-runescape-client-4.3.1.tar.gz::https://github.com/HikariKnight/rsu-client/archive/v4.3.1.tar.gz
+ md5sums = 8859e04b426cfbc452a02e9b60296077
pkgname = unix-runescape-client
diff --git a/PKGBUILD b/PKGBUILD
index 78bd3da3eef6..b355ade5d9b8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Ivan Puntiy <ivan.puntiy-at-gmail>
pkgname=unix-runescape-client
-pkgver=4.2.9
-pkgrel=2
+pkgver=4.3.1
+pkgrel=1
pkgdesc="RuneScape client for Linux and Unix"
arch=(any)
url="http://hkprojects.weebly.com/runescape-client-for-linux-and-unix.html"
@@ -20,7 +20,7 @@ optdepends=(
conflicts=('runescape-client-bin')
install=$pkgname.install
source=("$pkgname-$pkgver.tar.gz::https://github.com/HikariKnight/rsu-client/archive/v$pkgver.tar.gz")
-md5sums=('91713a6f7328a689445c424a4509dfb7')
+md5sums=('8859e04b426cfbc452a02e9b60296077')
package() {
local _instdir="$pkgdir"/opt/runescape
diff --git a/rsu-client-4.2.9-combo-fix.patch b/rsu-client-4.2.9-combo-fix.patch
deleted file mode 100644
index 4dcc937b6723..000000000000
--- a/rsu-client-4.2.9-combo-fix.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/runescape/rsu/framework/API/client/launch/launcher.pm b/runescape/rsu/framework/API/client/launch/launcher.pm
-index ad9dec3..ce75065 100755
---- a/runescape/rsu/framework/API/client/launch/launcher.pm
-+++ b/runescape/rsu/framework/API/client/launch/launcher.pm
-@@ -2774,7 +2774,9 @@ sub loadprms
- # Next if filename is runescape.prm, oldschool.prm or runescape-beta.prm
- #next if $prmfilefound =~ /^(runescape|oldschool|runescape-beta)\.prm$/;
- # Next if filename ends with .example
-- next if $prmfilefound =~ /\.example$/;
-+ #next if $prmfilefound =~ /\.example$/;
-+ # Next if filenname does not end with .prm
-+ next if $prmfilefound !~ /\.prm$/;
-
- # Append the file to the combobox
- $self->{prmSelect}->Append("$prmfilefound");