diff options
Diffstat (limited to 'graphics/feh/feh.SlackBuild')
-rw-r--r-- | graphics/feh/feh.SlackBuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/graphics/feh/feh.SlackBuild b/graphics/feh/feh.SlackBuild index acc33382f9945..234c874c9be4c 100644 --- a/graphics/feh/feh.SlackBuild +++ b/graphics/feh/feh.SlackBuild @@ -24,7 +24,7 @@ # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=feh -VERSION=${VERSION:-2.28.1} +VERSION=${VERSION:-3.1.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -73,6 +73,7 @@ find -L . \ CFLAGS="$SLKCFLAGS" \ make \ PREFIX=/usr + make install \ DESTDIR=$PKG \ PREFIX=/usr \ @@ -80,8 +81,8 @@ make install \ doc_dir=$PKG/usr/doc/$PRGNAM-$VERSION \ example_dir=$PKG/usr/doc/$PRGNAM-$VERSION/examples -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 +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 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 |