diff options
author | davidovski <david@davidovski.xyz> | 2022-01-09 16:41:14 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-09 16:41:14 +0000 |
commit | 1b8d8682486a43071f968afc03d43aa1e27413b8 (patch) | |
tree | 228e207ddefa064ae7522413ceb926bc626ca895 /repo/core/zip.xibuild | |
parent | 415e021b1e58da6b1f4a152c224dafb74e76e27d (diff) |
added zip, cmake, asciidog and pkg-config
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 +} |