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/zip/.gitignore vendored Normal file
View File

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

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

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

17
src/zip/pkg.sh Normal file
View File

@ -0,0 +1,17 @@
NAME="zip"
DESC="ZIP file utilities"
VERSION="3.0"
FILES=("https://downloads.sourceforge.net/infozip/zip30.tar.gz")
HASHES=("7b74551e63f8ee6aab6fbc86676c0d37")
DEPENDS=()
PACKAGE() {
tar xf zip30.tar.gz && cd zip30
make -f unix/Makefile generic_gcc
make prefix="$ROOTDIR/usr" \
MANDIR="$ROOTDIR/usr/share/man/man1" \
-f unix/Makefile install
cd .. && rm -r zip30
}