diff options
author | B. Watson <yalhcru@gmail.com> | 2020-10-11 16:54:09 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-10-17 09:36:50 +0700 |
commit | 9179b93859da326201d1a82f3643fa600c724987 (patch) | |
tree | f081e2562b46a0528982e2f1a0817859c6e1c224 /academic/nco | |
parent | f1cf001ec54ada19ec71c53608c66bca50ddd471 (diff) | |
download | slackbuilds-9179b93859da326201d1a82f3643fa600c724987.tar.gz |
academic/nco: Remove template comments.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic/nco')
-rw-r--r-- | academic/nco/nco.SlackBuild | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/academic/nco/nco.SlackBuild b/academic/nco/nco.SlackBuild index 6afd6b07d5..0692d9f9da 100644 --- a/academic/nco/nco.SlackBuild +++ b/academic/nco/nco.SlackBuild @@ -55,7 +55,7 @@ else LIBDIRSUFFIX="" fi -set -e # Exit on most errors +set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -83,7 +83,6 @@ CXXFLAGS="$SLKCFLAGS" \ --disable-static \ --build=$ARCH-slackware-linux -# Compile the application and install it into the $PKG directory make make install DESTDIR=$PKG @@ -93,18 +92,15 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -# Compress info pages and remove the package's dir file rm -f $PKG/usr/info/dir gzip -9 $PKG/usr/info/*.info* -# Copy program documentation into the package mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ AUTHORS CITATION COPYING COPYRIGHT INSTALL LICENSE README.md \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -# Copy the slack-desc (and a custom doinst.sh if necessary) into ./install mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |