diff options
Diffstat (limited to 'network/wendzelnntpd/wendzelnntpd.SlackBuild')
-rw-r--r-- | network/wendzelnntpd/wendzelnntpd.SlackBuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/network/wendzelnntpd/wendzelnntpd.SlackBuild b/network/wendzelnntpd/wendzelnntpd.SlackBuild index d84b872e69ff..0c1cb87aec34 100644 --- a/network/wendzelnntpd/wendzelnntpd.SlackBuild +++ b/network/wendzelnntpd/wendzelnntpd.SlackBuild @@ -33,6 +33,15 @@ VERSION=${VERSION:-2.1.2} TGZ_DIRNAME=cdpxe-WendzelNNTPd-5ea53d6 # for v2.1.2 BUILD=${BUILD:-3} TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + TMP=${TMP:-/tmp/SBo} OUTPUT=${OUTPUT:-/tmp} @@ -125,5 +134,5 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ #for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done 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 |