summaryrefslogtreecommitdiffstats
path: root/games/redeclipse
diff options
context:
space:
mode:
author B. Watson <yalhcru@gmail.com>2017-03-20 18:39:01 -0400
committer David Spencer <idlemoor@slackbuilds.org>2017-03-25 13:27:42 +0000
commitbb5814ea2b37adb67d27bb7bed05c932205317be (patch)
tree786031775455b70b60df8f4654c79fe68fbe1471 /games/redeclipse
parent35c72cbc72dae2a7cbd56d04ae6c5ea3d0fdf053 (diff)
downloadslackbuilds-bb5814ea2b37adb67d27bb7bed05c932205317be.tar.gz
slackbuilds-bb5814ea2b37adb67d27bb7bed05c932205317be.tar.xz
games/redeclipse: Remove template comments.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'games/redeclipse')
-rw-r--r--games/redeclipse/redeclipse.SlackBuild6
1 files changed, 0 insertions, 6 deletions
diff --git a/games/redeclipse/redeclipse.SlackBuild b/games/redeclipse/redeclipse.SlackBuild
index 5507472d5f..e11e9c3117 100644
--- a/games/redeclipse/redeclipse.SlackBuild
+++ b/games/redeclipse/redeclipse.SlackBuild
@@ -80,7 +80,6 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-# Compile the application and install it into the $PKG directory
export CXXFLAGS="$SLKCFLAGS"
make -C src/ client server cube2font
make -C src/ \
@@ -90,24 +89,19 @@ make -C src/ \
mandir=$PKG/usr/man \
system-install system-install-cube2font
-# 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
-# Compress man pages
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
-# Copy program documentation into the package
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp doc/*.txt $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-# Copy slack-desc and doinst.sh into ./install
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
-# Make the package; be sure to leave it in $OUTPUT
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}