aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Gamble2015-11-26 08:51:48 +1100
committerMatthew Gamble2015-11-26 08:52:02 +1100
commitec79ca55489000ec99f45684a29adcd991e2c70f (patch)
treed396b91be9b92afc0daa840bec82f7338d7a2f06
parentcc32e596b9c2b60b3e5854ac02b0a6fffb984cad (diff)
downloadaur-ec79ca55489000ec99f45684a29adcd991e2c70f.tar.gz
Fix list of dependencies
Bash doesn't use commas in arrays
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 1a93da1db5e2..6967a11d4521 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@ pkgdesc="C0 Package for 15-122"
url="http://c0.typesafety.net/index.html"
arch=('x86_64' 'i686')
license=('GPL')
-depends=('libpng12>=1.2','zlib>=1.2','make>=4.0', 'gcc>=5.1','ncurses5-compat-libs>=6.0')
+depends=('libpng12>=1.2' 'zlib>=1.2' 'make>=4.0' 'gcc>=5.1' 'ncurses5-compat-libs>=6.0')
provides=('coin','cc0')
source=("$pkgname::http://c0.typesafety.net/dist/cc0-v0523-linux3.13.0-64bit-bin.tgz")
md5sums=('c58f4b8720785ccc4063d2f5f3209da0')