first commit
This commit is contained in:
3
src/unzip/.gitignore
vendored
Normal file
3
src/unzip/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/unzip/changes.md
Normal file
2
src/unzip/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 6.0
|
||||
First version
|
24
src/unzip/pkg.sh
Normal file
24
src/unzip/pkg.sh
Normal file
@ -0,0 +1,24 @@
|
||||
NAME="unzip"
|
||||
DESC="contains ZIP extraction utilities"
|
||||
VERSION="6.0"
|
||||
FILES=(
|
||||
"https://downloads.sourceforge.net/infozip/unzip60.tar.gz"
|
||||
"https://www.linuxfromscratch.org/patches/blfs/12.0/unzip-$VERSION-consolidated_fixes-1.patch"
|
||||
)
|
||||
HASHES=(
|
||||
"62b490407489521db863b523a7f86375"
|
||||
"02cfd942875ca492c8fd27dff773e633a4f0b9bb47af2c3ad2697e8df8aa79f8"
|
||||
)
|
||||
DEPENDS=()
|
||||
|
||||
PACKAGE() {
|
||||
tar xf $NAME"60.tar.gz"
|
||||
cd $NAME"60"
|
||||
|
||||
patch -Np1 -i ../unzip-$VERSION-consolidated_fixes-1.patch
|
||||
make -f unix/Makefile generic
|
||||
make prefix=$ROOTDIR/usr MANDIR=$ROOTDIR/usr/share/man/man1 \
|
||||
-f unix/Makefile install
|
||||
|
||||
cd .. && rm -rf $NAME"60"
|
||||
}
|
Reference in New Issue
Block a user