summaryrefslogtreecommitdiffstats
path: root/lensfun/build/lensfun.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'lensfun/build/lensfun.SlackBuild')
-rwxr-xr-xlensfun/build/lensfun.SlackBuild8
1 files changed, 1 insertions, 7 deletions
diff --git a/lensfun/build/lensfun.SlackBuild b/lensfun/build/lensfun.SlackBuild
index 9b0cdccb..af8a4e0a 100755
--- a/lensfun/build/lensfun.SlackBuild
+++ b/lensfun/build/lensfun.SlackBuild
@@ -147,7 +147,7 @@ CFLAGS="$SLKCFLAGS" \
--sysconfdir=/etc \
2>&1 | tee $OUTPUT/configure-${PRGNAM}.log
-make 2>&1 | tee $OUTPUT/make-${PRGNAM}.log
+make all 2>&1 | tee $OUTPUT/make-${PRGNAM}.log
make DESTDIR=$PKG install 2>&1 |tee $OUTPUT/install-${PRGNAM}.log
# Add documentation:
@@ -161,12 +161,6 @@ cat $SRCDIR/$(basename $0) | sed \
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:
find $PKG | xargs file | grep -e "executable" -e "shared object" \
| grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null