summaryrefslogtreecommitdiffstats
path: root/fbterm
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2008-08-14 17:41:51 +0000
committer Eric Hameleers <alien@slackware.com>2008-08-14 17:41:51 +0000
commite38ec13b9b3e927487513523707263e562a9e15d (patch)
tree6fe15c90c6130ff6630112fa27b0f415f7b641e4 /fbterm
parent7180ed4ccdce1df0430a418da8198b907feb388f (diff)
downloadasb-e38ec13b9b3e927487513523707263e562a9e15d.tar.gz
asb-e38ec13b9b3e927487513523707263e562a9e15d.tar.xz
No man page, no .desktop file
Diffstat (limited to 'fbterm')
-rwxr-xr-xfbterm/build/fbterm.SlackBuild19
1 files changed, 0 insertions, 19 deletions
diff --git a/fbterm/build/fbterm.SlackBuild b/fbterm/build/fbterm.SlackBuild
index ed3c148e..93ae7439 100755
--- a/fbterm/build/fbterm.SlackBuild
+++ b/fbterm/build/fbterm.SlackBuild
@@ -169,16 +169,6 @@ else
make DESTDIR=$PKG install 2>&1 |tee $OUTPUT/install-${PRGNAM}.log
fi
-# Add this to the doinst.sh:
-! [ -d $PKG/install ] && mkdir -p $PKG/install
-cat <<EOT >> $PKG/install/doinst.sh
-# Update the desktop database:
-if [ -x usr/bin/update-desktop-database ]; then
- chroot . /usr/bin/update-desktop-database /usr/share/applications > /dev/null 2>&1
-fi
-
-EOT
-
# Add documentation:
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION || true
@@ -186,12 +176,6 @@ cp -a $SRCDIR/$(basename $0) $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
chown -R root:root $PKG/usr/doc/$PRGNAM-$VERSION
find $PKG/usr/doc -type f -exec chmod 644 {} \;
-# Compress the man page(s):
-if [ -d $PKG/usr/man ]; then
- find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \;
- for i in $(find $PKG/usr/man -type l -name "*.?") ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-fi
-
# Strip binaries:
cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
@@ -201,9 +185,6 @@ cd -
# Add a package description:
mkdir -p $PKG/install
cat $SRCDIR/slack-desc > $PKG/install/slack-desc
-if [ -f $SRCDIR/doinst.sh ]; then
- cat $SRCDIR/doinst.sh >> $PKG/install/doinst.sh
-fi
# Build the package:
cd $PKG