summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMike Swanson2016-03-20 03:46:48 -0700
committerMike Swanson2016-03-20 03:46:48 -0700
commit5ae018067ed7563c814894289133e4f325f815ad (patch)
tree85a71340992b18c56a54459a9f24e2a5fe8aa76b /PKGBUILD
parent850ebeb8a0662b9b4e5e6f1f240b2059a8f79021 (diff)
downloadaur-5ae018067ed7563c814894289133e4f325f815ad.tar.gz
Fix the groups array in the PKGBUILD
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 3 insertions, 3 deletions
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"