aboutsummaryrefslogtreecommitdiff
path: root/utilities/zoo
diff options
context:
space:
mode:
Diffstat (limited to 'utilities/zoo')
-rw-r--r--utilities/zoo/zoo-2.10-debian27fixes.patch.xzbin0 -> 8260 bytes
-rw-r--r--utilities/zoo/zoo-2.10-install.patch.xzbin0 -> 744 bytes
-rwxr-xr-xutilities/zoo/zoo.build45
3 files changed, 45 insertions, 0 deletions
diff --git a/utilities/zoo/zoo-2.10-debian27fixes.patch.xz b/utilities/zoo/zoo-2.10-debian27fixes.patch.xz
new file mode 100644
index 0000000..b5e9f5e
--- /dev/null
+++ b/utilities/zoo/zoo-2.10-debian27fixes.patch.xz
Binary files differ
diff --git a/utilities/zoo/zoo-2.10-install.patch.xz b/utilities/zoo/zoo-2.10-install.patch.xz
new file mode 100644
index 0000000..497ada6
--- /dev/null
+++ b/utilities/zoo/zoo-2.10-install.patch.xz
Binary files differ
diff --git a/utilities/zoo/zoo.build b/utilities/zoo/zoo.build
new file mode 100755
index 0000000..da3fe59
--- /dev/null
+++ b/utilities/zoo/zoo.build
@@ -0,0 +1,45 @@
+#!/bin/bash
+#
+# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd>
+
+source /usr/src/ports/Build/build.sh
+
+NAME=zoo
+VERSION=2.10
+BUILD=1
+
+# Description
+
+cat > ${PKG}/install/slack-desc <<EOF
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+$(padd)|-----handy-ruler------------------------------------------------------|
+${NAME}: zoo (archiving and compressing utility)
+${NAME}:
+${NAME}: Zoo is used to create and maintain collections of files in compressed
+${NAME}: form. It uses a Lempel-Ziv compression algorithm that gives space
+${NAME}: savings in the range of 20% to 80% depending on the type of file
+${NAME}: data. Zoo can store and selectively extract multiple generations of
+${NAME}: the same file. Data can be recovered from damaged archives by
+${NAME}: skipping the damaged portion and locating undamaged data with the
+${NAME}: help of fiz(1).
+${NAME}:
+${NAME}: Zoo was written by Rahul Dhesi.
+EOF
+
+# Sources
+
+SRCNAME[0]=${NAME}
+SRCVERS[0]=${VERSION}
+SRCPACK[0]=http://www.ibiblio.org/pub/packages/ccic/software/unix/utils/${SRCNAME[0]}-${SRCVERS[0]}.tar.gz
+
+build0()
+{
+make ${JOBS} OPTIM="${FLAGS}" linux
+make install DESTDIR="${PKG}" PREFIX="${SYS_DIR[usr]}"
+}