summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authoramagura2015-06-09 11:11:46 -0600
committeramagura2015-06-09 11:11:46 -0600
commit65b6709a947c389f892189f5338ebab4e9598ac9 (patch)
tree6e0bb47fd27560c1a0f651d3e849b8ed1595e9c8
parentae7ac85975fb4d9344133657eda49764f51cd635 (diff)
downloadaur-65b6709a947c389f892189f5338ebab4e9598ac9.tar.gz
updated pkgbuild to use new depends stuffs
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD6
2 files changed, 13 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 2dfa41e0d746..848138ef027a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = epsxe
pkgdesc = Enhanced PSX emulator
pkgver = 1.9.25
- pkgrel = 3
+ pkgrel = 4
url = http://epsxe.com
install = epsxe.install
arch = i686
@@ -16,6 +16,15 @@ pkgbase = epsxe
md5sums = eb0c46b8ae1355c589792f6be1835e47
md5sums = 1d6d07e9e1c97ed2a7ce46a9b7419654
md5sums = dc54e1e3406b0010e0552cffabb16c0f
+ depends_i686 = gtk2
+ depends_i686 = sdl_ttf
+ depends_i686 = libtinfo
+ depends_x86_64 = lib32-gtk2
+ depends_x86_64 = lib32-ncurses
+ depends_x86_64 = lib32-libxt
+ depends_x86_64 = lib32-sdl_ttf
+ depends_x86_64 = lib32-alsa-lib
+ depends_x86_64 = lib32-libtinfo
pkgname = epsxe
diff --git a/PKGBUILD b/PKGBUILD
index c4f248eaa965..2679b8a32815 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,12 +3,12 @@
#
pkgname=epsxe
pkgver=1.9.25
-pkgrel=3
+pkgrel=4
pkgdesc="Enhanced PSX emulator"
url="http://epsxe.com"
arch=('i686' 'x86_64')
-[ "$CARCH" = "i686" ] && depends+=(gtk2 sdl_ttf libtinfo)
-[ "$CARCH" = "x86_64" ] && depends+=(lib32-gtk2 lib32-ncurses lib32-libxt lib32-sdl_ttf lib32-alsa-lib lib32-libtinfo)
+depends_i686+=(gtk2 sdl_ttf libtinfo)
+depends_x86_64+=(lib32-gtk2 lib32-ncurses lib32-libxt lib32-sdl_ttf lib32-alsa-lib lib32-libtinfo)
license=('unknown')
install=${pkgname}.install
options=(!strip)