summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author B. Watson2020-01-03 22:34:41 +0100
committer Willy Sudiarto Raharjo2020-01-12 02:47:38 +0100
commitc6e15decb4a1d4661edd1d7c5a2fa1d6017f60ec (patch)
treeeec06d1174854d2d408890db030beb12b6f6c379 /desktop
parent86bcce2666df928b6cde47d68f3b8ad5a6557d87 (diff)
downloadslackbuilds-c6e15decb4a1d4661edd1d7c5a2fa1d6017f60ec.tar.gz
desktop/gntp-send: Remove template comments from script.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/gntp-send/gntp-send.SlackBuild5
1 files changed, 0 insertions, 5 deletions
diff --git a/desktop/gntp-send/gntp-send.SlackBuild b/desktop/gntp-send/gntp-send.SlackBuild
index ec35851807..ab535fa425 100644
--- a/desktop/gntp-send/gntp-send.SlackBuild
+++ b/desktop/gntp-send/gntp-send.SlackBuild
@@ -65,25 +65,20 @@ CXXFLAGS="$SLKCFLAGS" \
--disable-static \
--build=$ARCH-slackware-linux
-# Compile the application and install it into the $PKG directory
make
make install DESTDIR=$PKG
-# Strip binaries and libraries
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \
| grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-# Copy program documentation into the package
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
LICENSE README.md VERSION example \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-# Copy the slack-desc into ./install
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
-# Make the package
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}