summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlashbunny2009-11-30 15:22:56 -0500
committerSlashbunny2009-11-30 15:22:56 -0500
commit574c68e23f107fa24d254ce34eb87b1bb594fa55 (patch)
tree4423b24b57ca10a8da796d15b8e52df152820ed8
parenteca597483ff84b3feb9049497532539c54f430c9 (diff)
downloadaur-574c68e23f107fa24d254ce34eb87b1bb594fa55.tar.gz
Added 64bit deps, removed bundled libraries
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD10
2 files changed, 5 insertions, 7 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 63267dfa6bbe..482dbfd38aa0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = doom3
pkgdesc = Doom 3 Engine. You need the retail .pk4 files to play.
pkgver = 1.3.1.1304
- pkgrel = 5
+ pkgrel = 6
url = http://www.doom3.com/
install = doom3.install
arch = i686
diff --git a/PKGBUILD b/PKGBUILD
index b1a36cd989f1..ca6e25262be5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,12 +5,12 @@
pkgname=doom3
pkgver=1.3.1.1304
-pkgrel=5
+pkgrel=6
pkgdesc='Doom 3 Engine. You need the retail .pk4 files to play.'
url='http://www.doom3.com/'
license=('custom:"DOOM 3"' 'custom:"PunkBuster"')
[ "$CARCH" = "i686" ] && depends=('libxext' 'libgl' 'alsa-lib>=1.0.6')
-[ "$CARCH" = "x86_64" ] && depends=('lib32-libxdamage' 'lib32-libxext' 'lib32-libgl' 'lib32-alsa-lib>=1.0.6')
+[ "$CARCH" = "x86_64" ] && depends=('lib32-gcc-libs' 'lib32-libxdamage' 'lib32-libxext' 'lib32-libgl' 'lib32-alsa-lib>=1.0.6')
arch=('i686' 'x86_64')
install=doom3.install
source=('doom3.launcher' 'doom3-dedicated.launcher' 'doom3.desktop' \
@@ -88,8 +88,6 @@ build() {
install -D -m 644 $srcdir/doom3.desktop \
$pkgdir/usr/share/applications/doom3.desktop
- # Remove Bundled Libraries for x86 (Doom3 will use the System Libraries)
- if [ "$CARCH" == "i686" ]; then
- rm $pkgdir/opt/doom3/{libgcc_s.so.1,libstdc++.so.6}
- fi
+ # Remove Bundled Libraries (Doom3 will use the System Libraries)
+ rm $pkgdir/opt/doom3/{libgcc_s.so.1,libstdc++.so.6}
}