summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD23
2 files changed, 14 insertions, 15 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 46cda5875b04..c7aa3e902701 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,10 +1,12 @@
pkgbase = quake3-reactionq3
pkgdesc = Reaction Quake 3 is modification for Quake 3 modeled after games like ActionQ2 and ActionHL, that recreate an action movie atmosphere.
pkgver = 3.2
- pkgrel = 1
+ pkgrel = 2
url = http://www.rq3.com/
+ arch = any
+ license = custom
depends = quake3
- source = http://www.rq3.com/ReactionQuake3-v3.2-Full.zip
+ source = ftp://ftp.euronet.nl/pub/orange/games/Quake3/mods/Reaction/ReactionQuake3-v3.2-Full.zip
md5sums = 9d376db7be9c2990953b93fae075458b
pkgname = quake3-reactionq3
diff --git a/PKGBUILD b/PKGBUILD
index 5a6ad48a95ac..05454ceb8793 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,23 +2,20 @@
pkgname=quake3-reactionq3
pkgver=3.2
-pkgrel=1
+pkgrel=2
pkgdesc="Reaction Quake 3 is modification for Quake 3 modeled after games like ActionQ2 and ActionHL, that recreate an action movie atmosphere."
url="http://www.rq3.com/"
-license=""
+license=('custom')
+arch=('any')
depends=('quake3')
-makedepends=()
-conflicts=()
-replaces=()
-backup=()
-install=
-source=('http://www.rq3.com/ReactionQuake3-v3.2-Full.zip')
+source=('ftp://ftp.euronet.nl/pub/orange/games/Quake3/mods/Reaction/ReactionQuake3-v3.2-Full.zip')
md5sums=('9d376db7be9c2990953b93fae075458b')
+PKGEXT='.pkg.tar'
-build() {
- cd $startdir/src/
+package() {
+ # Create Destination Directory
+ install -d ${pkgdir}/opt/quake3/
- # Base RQ3 Files
- install -d $startdir/pkg/opt/quake3/
- unzip ReactionQuake3-v3.2-Full.zip -d $startdir/pkg/opt/quake3/
+ # Intrall RQ3 Files
+ mv ${srcdir}/rq3 ${pkgdir}/opt/quake3/
}