From e16ddbb59f8531268c94a3439bd74160ac460ecb Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Wed, 14 Apr 2010 14:57:43 +0700 Subject: [PATCH] clean --- y/eliot/eliot.SlackBuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/y/eliot/eliot.SlackBuild b/y/eliot/eliot.SlackBuild index e6b0d47b..7929ce85 100755 --- a/y/eliot/eliot.SlackBuild +++ b/y/eliot/eliot.SlackBuild @@ -42,6 +42,8 @@ mkdir -p $PKG CPPFLAGS=$SLCKFLAGS \ ./configure \ --prefix=$PREFIX \ + --mandir=$PREFIX/man \ + --infodir=$PREFIX/info \ --libdir=$PREFIX/lib$(echo $ARCH | grep -o 64) # just close your eyes and let's pretend these don't exist @@ -82,11 +84,8 @@ mkdir -p $PKG/usr/doc/$APP_NAME-$VERSION [ -d $PKG/usr/info ] && rm $PKG/usr/info/dir # Strip binaries -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) - +find $PKG | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +find $PKG | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null # embaumement mkdir -p $PKG/install