diff options
author | B. Watson <urchlay@slackware.uk> | 2022-12-27 02:20:02 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-12-31 09:14:48 +0700 |
commit | be7a8969298e313d77540b1135d1e5d716d0c505 (patch) | |
tree | 6fb64c7492f813b435853e79b62cc7242e69b41b /system/archmage | |
parent | 0064b57cb40d2b578f78d7d61cfbc8b917dc5b40 (diff) |
system/archmage: Add missing PKGTYPE assignment.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/archmage')
-rw-r--r-- | system/archmage/archmage.SlackBuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/archmage/archmage.SlackBuild b/system/archmage/archmage.SlackBuild index 9272855f554ec..6f14c3a761b6a 100644 --- a/system/archmage/archmage.SlackBuild +++ b/system/archmage/archmage.SlackBuild @@ -12,6 +12,7 @@ PRGNAM=archmage VERSION=${VERSION:-0.4.2.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -74,4 +75,4 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE |