diff options
Diffstat (limited to 'system/p7zip/p7zip.SlackBuild')
-rw-r--r-- | system/p7zip/p7zip.SlackBuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/system/p7zip/p7zip.SlackBuild b/system/p7zip/p7zip.SlackBuild index 3c49ea5df0..3ac450f466 100644 --- a/system/p7zip/p7zip.SlackBuild +++ b/system/p7zip/p7zip.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for p7zip -# Copyright 2007-2009 Heinz Wiesinger, Amsterdam, Netherlands +# Copyright 2007-2010 Heinz Wiesinger, Amsterdam, Netherlands # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,16 +23,14 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=p7zip -VERSION=9.04 +VERSION=9.13 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -98,6 +96,11 @@ make install \ install -m 0755 contrib/gzip-like_CLI_wrapper_for_7z/p7zip $PKG/usr/bin/ install -m 0644 contrib/gzip-like_CLI_wrapper_for_7z/man1/p7zip.1 $PKG/usr/man/man1/ +# install midnight commander vfs add on +mkdir -p $PKG/usr/share/mc/extfs/ +install -m 755 contrib/VirtualFileSystemForMidnightCommander/u7z \ + $PKG/usr/share/mc/extfs/ + if ! [ "$GUI" = "no" ]; then # Unfortunately we have to install 7zG by hand install -m 555 $PKG/usr/bin/7z $PKG/usr/bin/7zG |