first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/unzip/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/unzip/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 6.0
First version

24
src/unzip/pkg.sh Normal file
View 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"
}