first commit
This commit is contained in:
3
src/zip/.gitignore
vendored
Normal file
3
src/zip/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/zip/changes.md
Normal file
2
src/zip/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 3.0
|
||||
First version
|
17
src/zip/pkg.sh
Normal file
17
src/zip/pkg.sh
Normal 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
|
||||
}
|
Reference in New Issue
Block a user