diff options
Diffstat (limited to 'repo/core/zip.xibuild')
-rw-r--r-- | repo/core/zip.xibuild | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/repo/core/zip.xibuild b/repo/core/zip.xibuild new file mode 100644 index 0000000..c94ffce --- /dev/null +++ b/repo/core/zip.xibuild @@ -0,0 +1,11 @@ +#!/bin/bash + +DEPS=(glibc bzip2) + +SOURCE=https://sourceforge.net/projects/infozip/files/Zip%203.x%20%28latest%29/3.0/zip30.tar.gz/download +DESC="Compressor/archiver for creating and modifying zipfiles" + +build () { + make -f unix/Makefile generic + make DESTDIR=$PKG_DEST -f unix/Makefile install +} |