diff options
author | B. Watson <yalhcru@gmail.com> | 2020-01-03 16:34:41 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-01-12 08:47:38 +0700 |
commit | c6e15decb4a1d4661edd1d7c5a2fa1d6017f60ec (patch) | |
tree | eec06d1174854d2d408890db030beb12b6f6c379 | |
parent | 86bcce2666df928b6cde47d68f3b8ad5a6557d87 (diff) | |
download | slackbuilds-c6e15decb4a1d4661edd1d7c5a2fa1d6017f60ec.tar.gz |
desktop/gntp-send: Remove template comments from script.
Signed-off-by: B. Watson <yalhcru@gmail.com>
-rw-r--r-- | desktop/gntp-send/gntp-send.SlackBuild | 5 |
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} |