summaryrefslogtreecommitdiff
path: root/converters/base64
diff options
context:
space:
mode:
authorrh <rh@pkgsrc.org>1999-08-16 18:18:19 +0000
committerrh <rh@pkgsrc.org>1999-08-16 18:18:19 +0000
commit1af1cba458f1f92c31ad1c15e49388ede3c0f100 (patch)
tree3d879769c20c9f1bbc06af180483a2594e0f20c8 /converters/base64
parent90bd6c74c99e90229db04e75f2c5f6a9355005e5 (diff)
downloadpkgsrc-1af1cba458f1f92c31ad1c15e49388ede3c0f100.tar.gz
Initial import of base64-1.0, a simple encoder/decoder for base64 files.
Diffstat (limited to 'converters/base64')
-rw-r--r--converters/base64/Makefile16
-rw-r--r--converters/base64/files/md53
-rw-r--r--converters/base64/pkg/COMMENT1
-rw-r--r--converters/base64/pkg/DESCR11
-rw-r--r--converters/base64/pkg/PLIST3
5 files changed, 34 insertions, 0 deletions
diff --git a/converters/base64/Makefile b/converters/base64/Makefile
new file mode 100644
index 00000000000..a8b553c30aa
--- /dev/null
+++ b/converters/base64/Makefile
@@ -0,0 +1,16 @@
+# $NetBSD: Makefile,v 1.1.1.1 1999/08/16 18:18:19 rh Exp $
+#
+
+DISTNAME= base64
+PKGNAME= base64-1.0
+CATEGORIES= converters
+MASTER_SITES= http://www.fourmilab.ch/webtools/base64/
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://www.fourmilab.ch/webtools/base64/
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/base64 ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/base64.1 ${PREFIX}/man/man1
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/converters/base64/files/md5 b/converters/base64/files/md5
new file mode 100644
index 00000000000..dae7107bef1
--- /dev/null
+++ b/converters/base64/files/md5
@@ -0,0 +1,3 @@
+$NetBSD: md5,v 1.1.1.1 1999/08/16 18:18:19 rh Exp $
+
+MD5 (base64.tar.gz) = 212028261cf8cdbc50149c7d2cece266
diff --git a/converters/base64/pkg/COMMENT b/converters/base64/pkg/COMMENT
new file mode 100644
index 00000000000..e8c9bbdc740
--- /dev/null
+++ b/converters/base64/pkg/COMMENT
@@ -0,0 +1 @@
+encode and decode base64 files
diff --git a/converters/base64/pkg/DESCR b/converters/base64/pkg/DESCR
new file mode 100644
index 00000000000..44a7efaadf6
--- /dev/null
+++ b/converters/base64/pkg/DESCR
@@ -0,0 +1,11 @@
+ The MIME (Multipurpose Internet Mail Extensions) specification (RFC 1341
+and successors) defines a mechanism for encoding arbitrary binary information
+for transmission by electronic mail. Triplets of 8-bit octets are encoded as
+groups of four characters, each representing 6 bits of the source 24 bits.
+Only characters present in all variants of ASCII and EBCDIC are used, avoiding
+incompatibilities in other forms of encoding such as uuencode/uudecode.
+
+ base64 is a command line utility which encodes and decodes files in this
+format. It can be used within a pipeline as an encoding or decoding filter,
+and is most commonly used in this manner as part of an automated mail
+processing system.
diff --git a/converters/base64/pkg/PLIST b/converters/base64/pkg/PLIST
new file mode 100644
index 00000000000..818ff3a04e7
--- /dev/null
+++ b/converters/base64/pkg/PLIST
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 1999/08/16 18:18:19 rh Exp $
+bin/base64
+man/man1/base64.1