File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ set name=pkg.description value="Tools required to build OmniOS extra"
4
4
5
5
depend fmri=ooce/omnios-build-tools type=require
6
6
7
+ depend fmri=compress/7zip type=require
7
8
depend fmri=compress/lz4 type=require
8
9
depend fmri=driver/tuntap type=require
9
10
depend fmri=library/unixodbc type=require
Original file line number Diff line number Diff line change 142
142
fi
143
143
BRAICH_REPO=https://pkg.omnios.org/bloody/braich
144
144
145
- ARCHIVE_TYPES=" tar.zst tar.xz tar.bz2 tar.lz tar.gz tgz tar zip"
145
+ ARCHIVE_TYPES=" tar.zst tar.xz tar.bz2 tar.lz tar.gz tgz tar zip 7z "
146
146
147
147
# Default prefix for packages (may be overridden)
148
148
PREFIX=/opt/ooce
@@ -232,6 +232,7 @@ GIT=$USRBIN/git
232
232
LZIP=$USRBIN /lzip
233
233
NAWK=$USRBIN /awk
234
234
RSYNC=$USRBIN /rsync
235
+ SEVENZ=$USRBIN /7zz
235
236
UNZIP=$USRBIN /unzip
236
237
WGET=$USRBIN /wget
237
238
XZCAT=$USRBIN /xzcat
Original file line number Diff line number Diff line change @@ -1559,6 +1559,7 @@ extract_archive() {
1559
1559
* .tar.bz2) $BUNZIP2 -dc $file | $TAR -xvf - $* ;;
1560
1560
* .tar.lz) $LZIP -dc $file | $TAR -xvf - $* ;;
1561
1561
* .tar.gz|* .tgz) $GZIP -dc $file | $TAR -xvf - $* ;;
1562
+ * .7z) $SEVENZ x $file $* ;;
1562
1563
* .zip) $UNZIP $file $* ;;
1563
1564
* .tar) $TAR -xvf $file $* ;;
1564
1565
# May as well try tar. It's GNU tar which does a fair job at detecting
You can’t perform that action at this time.
0 commit comments