summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Swanson2016-03-20 03:46:48 -0700
committerMike Swanson2016-03-20 03:46:48 -0700
commit5ae018067ed7563c814894289133e4f325f815ad (patch)
tree85a71340992b18c56a54459a9f24e2a5fe8aa76b
parent850ebeb8a0662b9b4e5e6f1f240b2059a8f79021 (diff)
downloadaur-5ae018067ed7563c814894289133e4f325f815ad.tar.gz
Fix the groups array in the PKGBUILD
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ea37cc6f693e..2b58f6646ffa 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,9 @@
+# Generated by mksrcinfo v8
+# Sun Mar 20 10:46:28 UTC 2016
pkgbase = cmdpack
pkgdesc = Collection of command line utilities, most for emulation or disk images. (bin2ecm bin2iso bincomp brrrip byteshuf byteswap cdpatch fakecrc hax65816 id3point pecompat rels screamf subfile uips usfv vb2rip wordadd zerofill)
pkgver = 1.05
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/chungy/cmdpack
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index fdc0c99950f1..606bf82ef540 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,8 +3,8 @@
# Please comment unwanted cmdpack tools in "_utils" section.
-pkgbase='cmdpack'
-groups="$pkgbase"
+pkgbase=cmdpack
+groups=($pkgbase)
_utils=(
# Like below, add # at the beginning of unwanted tools' line.
# 'unwantedtool'
@@ -30,7 +30,7 @@ _utils=(
)
for _tool in ${_utils[@]}; do pkgname+=("$pkgbase-$_tool"); done
pkgver=1.05
-pkgrel=1
+pkgrel=2
pkgdesc="Collection of command line utilities, most for emulation or disk images. (${_utils[*]})"
arch=('i686' 'x86_64')
url="https://github.com/chungy/cmdpack"