diff options
author | Slack Coder <slackcoder@server.ky> | 2024-05-03 13:49:37 -0500 |
---|---|---|
committer | Slack Coder <slackcoder@server.ky> | 2024-05-03 14:17:27 -0500 |
commit | 97b33258577934feec22a139b163477cd976f811 (patch) | |
tree | 57d2f0d1748162730402de6853b423dbaf1a1fbf /taler-exchange | |
parent | 5bf6a79a6fdd9e0611e6cc8e5ee0f274dac018ca (diff) | |
download | slackbuilds-97b33258577934feec22a139b163477cd976f811.tar.xz |
Lint using sbo-maintainer-tools
Diffstat (limited to 'taler-exchange')
-rw-r--r-- | taler-exchange/slack-desc | 15 | ||||
-rw-r--r--[-rwxr-xr-x] | taler-exchange/taler-exchange.SlackBuild | 13 | ||||
-rw-r--r-- | taler-exchange/taler-exchange.info | 2 |
3 files changed, 26 insertions, 4 deletions
diff --git a/taler-exchange/slack-desc b/taler-exchange/slack-desc index 712c373..3994f72 100644 --- a/taler-exchange/slack-desc +++ b/taler-exchange/slack-desc @@ -1,6 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + |-----handy-ruler------------------------------------------------------| -taler-exchange: taler-exchange +taler-exchange: taler-exchange (exchange for Taler payment system) taler-exchange: taler-exchange: The exchange for the Taler payment system. taler-exchange: taler-exchange: +taler-exchange: +taler-exchange: +taler-exchange: +taler-exchange: +taler-exchange: +taler-exchange: diff --git a/taler-exchange/taler-exchange.SlackBuild b/taler-exchange/taler-exchange.SlackBuild index 4b29f5a..b730222 100755..100644 --- a/taler-exchange/taler-exchange.SlackBuild +++ b/taler-exchange/taler-exchange.SlackBuild @@ -1,9 +1,12 @@ -#!/bin/sh +#!/bin/bash + +cd $(dirname $0) ; CWD=$(pwd) PRGNAM=taler-exchange VERSION=${VERSION:-0.10.2} BUILD=${BUILD:-1} TAG=${TAG:-_slackcoder} +PKGTYPE=${PKGTYPE:-_slackcoder} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -13,7 +16,11 @@ if [ -z "$ARCH" ]; then esac fi -CWD=$(pwd) +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -91,4 +98,4 @@ chmod g+w $PKG/var/log/taler chmod -R u=rwX,g=rX,o= $PKG/etc/taler/secrets/* cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.10.2-$ARCH-$BUILD$TAG.${PKGTYPE:-txz} +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-0.10.2-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/taler-exchange/taler-exchange.info b/taler-exchange/taler-exchange.info index 03b6aec..74a8642 100644 --- a/taler-exchange/taler-exchange.info +++ b/taler-exchange/taler-exchange.info @@ -3,6 +3,8 @@ VERSION="0.10.2" HOMEPAGE="https://taler.net" DOWNLOAD="https://ftpmirror.gnu.org/gnu/taler/taler-exchange-0.10.2.tar.gz" MD5SUM="ff67fdf2bf2f8eeeaa1860a924b3e69f" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" REQUIRES="gnunet jq postgresql" MAINTAINER="Slack Coder" EMAIL="slackcoder@server.ky" |